Windows/build-dependencies: Use correct logical OR operator
authorJohn Darrington <john@darrington.wattle.id.au>
Sun, 5 Sep 2021 11:01:25 +0000 (13:01 +0200)
committerJohn Darrington <john@darrington.wattle.id.au>
Sun, 5 Sep 2021 11:01:25 +0000 (13:01 +0200)
Windows/build-dependencies

index f2e9692167b3acdf55470bd2ebf0e74804346695..2ccd4841f7813d026b759c1a3d6a22b31fe36874 100755 (executable)
@@ -51,7 +51,7 @@ while test $# -gt 0; do
     shift 1;
 done
 
-if test -z "$SANDBOX" || -z "$arch"; then
+if test -z "$SANDBOX" -o -z "$arch"; then
             printf "Usage: $0 --arch=<arch> --sandbox=<dir> [--tarballs=<dir>]\n";
     exit 1;
 fi