mirror of
https://github.com/curl/curl.git
synced 2026-07-25 08:57:22 +03: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:
parent
daab7b2be7
commit
7270795839
1 changed files with 1 additions and 1 deletions
|
|
@ -25,7 +25,7 @@
|
|||
# die prints argument string to stdout and exits this shell script.
|
||||
#
|
||||
die(){
|
||||
echo "buildconf: $@"
|
||||
echo "buildconf: $*"
|
||||
exit 1
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue