diff options
author | Carlo Marcelo Arenas Belón <carenas@gmail.com> | 2020-07-19 15:36:05 -0700 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2020-08-01 00:00:31 +0200 |
commit | 72707958395af63eba574c4449cf6f901adf8353 (patch) | |
tree | 6ac58ed5e3ade63cb3b0bcf978f4abb52fc8874d | |
parent | daab7b2be74cda5e144a9dc3d10989d3522d2964 (diff) | |
download | curl-72707958395af63eba574c4449cf6f901adf8353.tar.gz |
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
-rwxr-xr-x | buildconf | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -25,7 +25,7 @@ # die prints argument string to stdout and exits this shell script. # die(){ - echo "buildconf: $@" + echo "buildconf: $*" exit 1 } |