From e547a66566900f6b17bc9515beb60a304aef6466 Mon Sep 17 00:00:00 2001 From: Bernd Schubert Date: Wed, 20 Mar 2024 16:43:54 +0100 Subject: [PATCH] ci-build.sh: Fix checking for function arguments (#909) Checking for an emtpy string actually doesn't work for $@, so just check for number of arguments. Co-authored-by: Bernd Schubert --- test/ci-build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/ci-build.sh b/test/ci-build.sh index 0307865..11ec5d5 100755 --- a/test/ci-build.sh +++ b/test/ci-build.sh @@ -89,7 +89,7 @@ sanitized_build() meson configure -D b_lundef=false # additional options - if [ -n "$@" ]; then + if [[ $# -gt 0 ]]; then meson configure "$@" fi -- 2.30.2