diff options
author | Petr Štetiar <ynezz@true.cz> | 2020-07-11 13:20:34 +0200 |
---|---|---|
committer | Petr Štetiar <ynezz@true.cz> | 2020-07-11 13:33:28 +0200 |
commit | 227e47b3ca964939f41c3564dd7da72d60044d00 (patch) | |
tree | 719d3a307953c59f4db0789a9d060eb5f2ce4095 /scripts | |
parent | 5b7cace9e3f553ca54e1e0ec5f7651b7d7a2052d (diff) | |
download | upstream-227e47b3ca964939f41c3564dd7da72d60044d00.tar.gz upstream-227e47b3ca964939f41c3564dd7da72d60044d00.tar.bz2 upstream-227e47b3ca964939f41c3564dd7da72d60044d00.zip |
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 <ynezz@true.cz>
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/env | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/env b/scripts/env index c81fbf8ddc..726a354b57 100755 --- a/scripts/env +++ b/scripts/env @@ -22,7 +22,7 @@ Commands: Options: EOF - exit ${1:-1} + exit "${1:-1}" } error() { |