From f1f8f019c81929b3fdeacdc98c2cec41506600f5 Mon Sep 17 00:00:00 2001 From: Michael Grote Date: Fri, 21 Jul 2023 21:29:38 +0200 Subject: [PATCH] &> /dev/null --- app.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app.sh b/app.sh index cb16c0b..57cf5e0 100644 --- a/app.sh +++ b/app.sh @@ -42,7 +42,7 @@ while true ; do echo clone pwd - GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no -i $GIT_REPO_DEPLOY_KEY" git clone "$GIT_REPO_URL" "$GIT_REPO_PATH" --quiet 2>&1 > /dev/null + GIT_SSH_COMMAND="ssh -o StrictHostKeyChecking=no -i $GIT_REPO_DEPLOY_KEY" git clone "$GIT_REPO_URL" "$GIT_REPO_PATH" --quiet &> /dev/null cd "$GIT_REPO_PATH" # Save the current value of IFS to restore later