summaryrefslogtreecommitdiffstats
path: root/tests/test_install.sh
diff options
context:
space:
mode:
authora1346054 <36859588+a1346054@users.noreply.github.com>2021-08-21 20:46:04 (GMT)
committera1346054 <36859588+a1346054@users.noreply.github.com>2021-08-21 20:46:23 (GMT)
commit6a8e21d8022a6880c9f46803463ebf93723d0885 (patch)
tree40ab88c73fe4d66036b92a75e956f71683a686ba /tests/test_install.sh
parentd68bfbde54ea1132dde615dcac58b2983f7a7a66 (diff)
downloadlz4-6a8e21d8022a6880c9f46803463ebf93723d0885.zip
lz4-6a8e21d8022a6880c9f46803463ebf93723d0885.tar.gz
lz4-6a8e21d8022a6880c9f46803463ebf93723d0885.tar.bz2
fix warnings reported by shellcheck in shell scripts
Diffstat (limited to 'tests/test_install.sh')
-rwxr-xr-xtests/test_install.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/test_install.sh b/tests/test_install.sh
index cb9d8bb..ad0d4eb 100755
--- a/tests/test_install.sh
+++ b/tests/test_install.sh
@@ -6,7 +6,7 @@ make="make -C $lz4_root"
unamestr=$(uname)
if [ "$unamestr" = 'Linux' ]; then
make="make -C $lz4_root"
-elif [ "$unamestr" = 'FreeBSD' -o "$unamestr" = 'OpenBSD' ]; then
+elif [ "$unamestr" = 'FreeBSD' ] || [ "$unamestr" = 'OpenBSD' ]; then
make="gmake -C $lz4_root"
fi