From: Petr Štetiar Date: Sat, 11 Jul 2020 11:20:34 +0000 (+0200) Subject: scripts/env: fix remaining shellcheck warning X-Git-Tag: v21.02.0-rc1~2239 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=227e47b3ca964939f41c3564dd7da72d60044d00;p=thirdparty%2Fopenwrt.git scripts/env: fix remaining shellcheck warning Fixes following shellcheck warning: In scripts/env line 25: exit ${1:-1} ^-----^ SC2086: Double quote to prevent globbing and word splitting. Signed-off-by: Petr Štetiar --- diff --git a/scripts/env b/scripts/env index c81fbf8ddc2..726a354b57f 100755 --- a/scripts/env +++ b/scripts/env @@ -22,7 +22,7 @@ Commands: Options: EOF - exit ${1:-1} + exit "${1:-1}" } error() {