We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c6d8156 commit 86842ceCopy full SHA for 86842ce
scripts/echodeps
@@ -51,7 +51,7 @@
51
52
#-
53
54
-if test "$1" == ""; then
+if test "$1" = ""; then
55
echo "Usage: ./scripts/echodeps <.properties file>"
56
exit
57
fi
scripts/packagedeps
@@ -41,7 +41,7 @@
41
42
43
44
45
echo "Usage: ./scripts/packagedeps package"
46
47
scripts/targetdeps
@@ -37,12 +37,12 @@
37
38
39
40
echo "Usage: ./scripts/targetdeps package"
-if test "$2" == ""; then
+if test "$2" = ""; then
target="export-runonly"
else
48
target="$2"
0 commit comments