From 65c7170acf3a203826464b93c465e7db58dabe8f Mon Sep 17 00:00:00 2001 From: "theis.gaedigk" Date: Sat, 2 Aug 2025 14:43:41 +0200 Subject: [PATCH] fix: improve error handling in auto-pull script --- auto-pull.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/auto-pull.sh b/auto-pull.sh index e616c26..7cc706f 100644 --- a/auto-pull.sh +++ b/auto-pull.sh @@ -1,6 +1,6 @@ #!/bin/bash cd /pfad/zu/deinem/repo while true; do - git pull + git pull || echo "git pull failed" sleep 10 done