Explorar o código

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 <[email protected]>
Petr Štetiar %!s(int64=5) %!d(string=hai) anos
pai
achega
227e47b3ca
Modificáronse 1 ficheiros con 1 adicións e 1 borrados
  1. 1 1
      scripts/env

+ 1 - 1
scripts/env

@@ -22,7 +22,7 @@ Commands:
 Options:
 
 EOF
-	exit ${1:-1}
+	exit "${1:-1}"
 }
 
 error() {