forked from cohabit/server_config
fix: remove quotes in for loop arg
This commit is contained in:
parent
e2f5b04f7f
commit
60b6731474
|
@ -4,7 +4,7 @@ if [[ $1 == "*" && $# -eq 1 ]]; then
|
|||
APPS=$(ls -d */)
|
||||
fi
|
||||
|
||||
for app in "$APPS"
|
||||
for app in $APPS
|
||||
do
|
||||
echo "[server_config] > Deploying: $app"
|
||||
|
||||
|
|
|
@ -9,7 +9,7 @@ if [[ $1 == "*" && $# -eq 1 ]]; then
|
|||
APPS=$(ls -d */)
|
||||
fi
|
||||
|
||||
for app in "$APPS"
|
||||
for app in $APPS
|
||||
do
|
||||
echo "[server_config] > Installing: $app"
|
||||
|
||||
|
|
Loading…
Reference in a new issue