1
0
mirror of https://github.com/moparisthebest/curl synced 2024-08-13 17:03:50 -04:00

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
This commit is contained in:
Carlo Marcelo Arenas Belón 2020-07-19 15:36:05 -07:00 committed by Daniel Stenberg
parent daab7b2be7
commit 7270795839
No known key found for this signature in database
GPG Key ID: 5CC908FDB71E12C2

View File

@ -25,7 +25,7 @@
# die prints argument string to stdout and exits this shell script.
#
die(){
echo "buildconf: $@"
echo "buildconf: $*"
exit 1
}