mirror of
https://github.com/saltstack/salt-bootstrap.git
synced 2025-04-16 09:40:21 +00:00
double quote variable to make shellcheck happier
This commit is contained in:
parent
ee11a3066e
commit
cb4cb5bf8a
1 changed files with 2 additions and 2 deletions
|
@ -1825,7 +1825,7 @@ __wait_for_apt(){
|
|||
WAIT_TIMEOUT=900
|
||||
|
||||
# Run our passed in apt command
|
||||
"${@}" 2>$APT_ERR
|
||||
"${@}" 2>"$APT_ERR"
|
||||
APT_RETURN=$?
|
||||
|
||||
# Make sure we're not waiting on a lock
|
||||
|
@ -1839,7 +1839,7 @@ __wait_for_apt(){
|
|||
echoerror "Bootstrap script cannot proceed. Aborting."
|
||||
return 1
|
||||
else
|
||||
"${@}" 2>$APT_ERR
|
||||
"${@}" 2>"$APT_ERR"
|
||||
APT_RETURN=$?
|
||||
fi
|
||||
done
|
||||
|
|
Loading…
Add table
Reference in a new issue