From 837f0966a27db45fdf791604db1813ed2b7a78fb Mon Sep 17 00:00:00 2001 From: John Darrington Date: Sun, 5 Sep 2021 13:01:25 +0200 Subject: [PATCH] Windows/build-dependencies: Use correct logical OR operator --- Windows/build-dependencies | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Windows/build-dependencies b/Windows/build-dependencies index f2e9692167..2ccd4841f7 100755 --- a/Windows/build-dependencies +++ b/Windows/build-dependencies @@ -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= --sandbox= [--tarballs=]\n"; exit 1; fi -- 2.30.2