mirror of
git://git.openwrt.org/openwrt/openwrt.git
synced 2024-12-24 15:43:25 +00:00
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>
This commit is contained in:
parent
5b7cace9e3
commit
227e47b3ca
@ -22,7 +22,7 @@ Commands:
|
||||
Options:
|
||||
|
||||
EOF
|
||||
exit ${1:-1}
|
||||
exit "${1:-1}"
|
||||
}
|
||||
|
||||
error() {
|
||||
|
Loading…
Reference in New Issue
Block a user