Skip to content

Commit 86842ce

Browse files
committed
silly non-sh ==
1 parent c6d8156 commit 86842ce

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

scripts/echodeps

+1-1
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151

5252
#-
5353

54-
if test "$1" == ""; then
54+
if test "$1" = ""; then
5555
echo "Usage: ./scripts/echodeps <.properties file>"
5656
exit
5757
fi

scripts/packagedeps

+1-1
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@
4141

4242
#-
4343

44-
if test "$1" == ""; then
44+
if test "$1" = ""; then
4545
echo "Usage: ./scripts/packagedeps package"
4646
exit
4747
fi

scripts/targetdeps

+2-2
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,12 @@
3737

3838
#-
3939

40-
if test "$1" == ""; then
40+
if test "$1" = ""; then
4141
echo "Usage: ./scripts/targetdeps package"
4242
exit
4343
fi
4444

45-
if test "$2" == ""; then
45+
if test "$2" = ""; then
4646
target="export-runonly"
4747
else
4848
target="$2"

0 commit comments

Comments
 (0)