From 72707958395af63eba574c4449cf6f901adf8353 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Carlo=20Marcelo=20Arenas=20Bel=C3=B3n?= Date: Sun, 19 Jul 2020 15:36:05 -0700 Subject: [PATCH] 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 --- buildconf | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/buildconf b/buildconf index 3da0f7b68..a25bc3a84 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 }