summaryrefslogtreecommitdiff
path: root/test/version.sh
diff options
context:
space:
mode:
authorMax Rees <maxcrees@me.com>2020-12-29 21:21:58 -0500
committerA. Wilcox <AWilcox@Wilcox-Tech.com>2023-11-29 21:57:38 -0600
commitcffa1f20260010c5a4fc4444f92591eda4c9b163 (patch)
tree886cab99032a050f04c5806440b26477c1abba10 /test/version.sh
parent7491ce405ab6db97d8decc09344c984997e8e514 (diff)
downloadapk-tools-cffa1f20260010c5a4fc4444f92591eda4c9b163.tar.gz
apk-tools-cffa1f20260010c5a4fc4444f92591eda4c9b163.tar.bz2
apk-tools-cffa1f20260010c5a4fc4444f92591eda4c9b163.tar.xz
apk-tools-cffa1f20260010c5a4fc4444f92591eda4c9b163.zip
test: remove a couple of bashisms
Co-authored-by: Samuel Holland <samuel@sholland.org>
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 f639e19..a2ee2b7 100755
--- a/test/version.sh
+++ b/test/version.sh
@@ -9,7 +9,7 @@ while read a result b rest ; do
fi
done < version.data
-if [ "$fail" == "0" ]; then
+if [ "$fail" = "0" ]; then
echo "OK: version checking works"
else
echo "FAIL: $fail version checks failed"