From 96f7d7bf7bc697409a861f31a61a222987dbf9c4 Mon Sep 17 00:00:00 2001 From: Andre Date: Wed, 4 Feb 2026 14:07:35 +0100 Subject: [PATCH] add output for git ls-remote calls --- webhooks-git/dadi-staging-init.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/webhooks-git/dadi-staging-init.sh b/webhooks-git/dadi-staging-init.sh index 83888b6..9f67fa8 100644 --- a/webhooks-git/dadi-staging-init.sh +++ b/webhooks-git/dadi-staging-init.sh @@ -29,7 +29,7 @@ wait_for_git_repository() { fi while true; do - if git ls-remote --heads "$DADI_STAGING_REPOSITORY" &>/dev/null; then + if git ls-remote --heads "$DADI_STAGING_REPOSITORY"; then echo "✓ Git repository is reachable!" return 0 fi