From 60b673147472d00f35eee840cbc137c87fbac5cb Mon Sep 17 00:00:00 2001 From: Julien Oculi Date: Thu, 30 May 2024 12:29:24 +0200 Subject: [PATCH] fix: remove quotes in for loop arg --- deploy.sh | 2 +- install.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deploy.sh b/deploy.sh index 5fc7941..e3ad47b 100644 --- a/deploy.sh +++ b/deploy.sh @@ -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" diff --git a/install.sh b/install.sh index ce5f385..58aaeca 100644 --- a/install.sh +++ b/install.sh @@ -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"