summaryrefslogtreecommitdiff
path: root/test/version.sh
diff options
context:
space:
mode:
authorAlex Xu (Hello71) <alex_y_xu@yahoo.ca>2021-08-07 08:33:23 -0400
committerTimo Teräs <timo.teras@iki.fi>2021-09-03 15:02:12 +0300
commita278d112877a0c347e42694d399d62ebbafc1dee (patch)
tree648f47404798ad3311b98b840d0647e518fdb66e /test/version.sh
parent984cd3e0b60d744e0b887ba2340c78b85eb991eb (diff)
downloadapk-tools-a278d112877a0c347e42694d399d62ebbafc1dee.tar.gz
apk-tools-a278d112877a0c347e42694d399d62ebbafc1dee.tar.bz2
apk-tools-a278d112877a0c347e42694d399d62ebbafc1dee.tar.xz
apk-tools-a278d112877a0c347e42694d399d62ebbafc1dee.zip
test: improve posix sh compatibility
Diffstat (limited to 'test/version.sh')
-rwxr-xr-xtest/version.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/version.sh b/test/version.sh
index 18199a6..628a6eb 100755
--- a/test/version.sh
+++ b/test/version.sh
@@ -9,7 +9,7 @@ cat version.data | while read a result b rest ; do
fi
done
-if [ "$fail" == "0" ]; then
+if [ "$fail" = "0" ]; then
echo "OK: version checking works"
fi