From: Carlo Marcelo Arenas Belón Date: Sun, 19 Jul 2020 22:36:05 +0000 (-0700) Subject: buildconf: avoid array concatenation in die() X-Git-Tag: curl-7_72_0~58 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=72707958395af63eba574c4449cf6f901adf8353;p=thirdparty%2Fcurl.git buildconf: avoid array concatenation in die() reported as error SC2145[1] by shellcheck, but not expected to cause any behavioural differences otherwise. [1] https://github.com/koalaman/shellcheck/wiki/SC2145 Closes #5701 --- diff --git a/buildconf b/buildconf index 3da0f7b688..a25bc3a845 100755 --- a/buildconf +++ b/buildconf @@ -25,7 +25,7 @@ # die prints argument string to stdout and exits this shell script. # die(){ - echo "buildconf: $@" + echo "buildconf: $*" exit 1 }