fix: remove quotes in for loop arg

This commit is contained in:
Julien Oculi 2024-05-30 12:29:24 +02:00
parent e2f5b04f7f
commit 60b6731474
2 changed files with 2 additions and 2 deletions

View file

@ -4,7 +4,7 @@ if [[ $1 == "*" && $# -eq 1 ]]; then
APPS=$(ls -d */) APPS=$(ls -d */)
fi fi
for app in "$APPS" for app in $APPS
do do
echo "[server_config] > Deploying: $app" echo "[server_config] > Deploying: $app"

View file

@ -9,7 +9,7 @@ if [[ $1 == "*" && $# -eq 1 ]]; then
APPS=$(ls -d */) APPS=$(ls -d */)
fi fi
for app in "$APPS" for app in $APPS
do do
echo "[server_config] > Installing: $app" echo "[server_config] > Installing: $app"