summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2022-08-03 18:26:57 +0000
committerMaxim Kuvyrkov <maxim.kuvyrkov@linaro.org>2022-08-03 18:28:24 +0000
commitebc084e75f364f68201ad36c97cf0925a9fede3e (patch)
tree8e83078fc6e592c95f75883a1ef78926461426ba
parent7718235a1872cf8339bf15b50960ea7707b3d9ba (diff)
tcwg-dev-build.sh: Fix tcwg-gnu-build job
... which breaks due to "${check_opt[@]}" expanding to an empty string when check_opt is an empty string (rather than empty array). Change-Id: Ie9d12a6a77222b95a12295e93a24c1094d717297
-rwxr-xr-xtcwg-dev-build.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/tcwg-dev-build.sh b/tcwg-dev-build.sh
index 1dfb4248..ea2e75e6 100755
--- a/tcwg-dev-build.sh
+++ b/tcwg-dev-build.sh
@@ -46,7 +46,7 @@ if [ x"$target" = x"native" ]; then
manifest_validation_opt="--manifest_validation false"
fi
-check_opt=
+check_opt=()
if [ -n "$check" ]; then
check_opt=("--check" "$check")
fi