From: Bernd Schubert Date: Wed, 20 Mar 2024 15:43:54 +0000 (+0100) Subject: ci-build.sh: Fix checking for function arguments (#909) X-Git-Tag: fuse-3.17.1-rc0~140 X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=e547a66566900f6b17bc9515beb60a304aef6466;p=qemu-gpiodev%2Flibfuse.git 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 --- 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