From 77e4cb6ab9c31bc74a60ce8c8a087e381a0c65b9 Mon Sep 17 00:00:00 2001 From: m17hr1l Date: Sun, 7 Jun 2026 02:06:45 +0200 Subject: [PATCH] deploy-all: redirect deploy.sh stdin from /dev/null so loop doesn't drop hosts --- scripts/deploy-all.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/deploy-all.sh b/scripts/deploy-all.sh index d614bad..3ce7d56 100755 --- a/scripts/deploy-all.sh +++ b/scripts/deploy-all.sh @@ -45,7 +45,7 @@ while IFS= read -r line; do if PSYC_PROD_HOST="$SSH_TARGET" \ PSYC_PROD_PATH="$REMOTE_PATH" \ PSYC_PROD_URL="$PUBLIC_URL" \ - bash "$(dirname "$0")/deploy.sh"; then + bash "$(dirname "$0")/deploy.sh" < /dev/null; then OK+=("$LABEL") else FAIL+=("$LABEL")