From 92f9067803fac9609d52453fe42ddfd71b8e9cb2 Mon Sep 17 00:00:00 2001
From: Laurent Laffont <llaffont@afi-sa.fr>
Date: Mon, 24 Mar 2025 16:54:30 +0100
Subject: [PATCH] Fix stalling git process on update skins

---
 scripts/update_skins.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/scripts/update_skins.sh b/scripts/update_skins.sh
index 6fcd42e1a46..8311a77b652 100644
--- a/scripts/update_skins.sh
+++ b/scripts/update_skins.sh
@@ -17,7 +17,7 @@ function gitpull() {
     local filename=$2
 
     cd "skins/"${skin} && \
-	git reset --hard HEAD && git pull --rebase > $LOGFILE 2>&1 
+	git reset -q --hard HEAD && git pull --rebase > $LOGFILE 2>&1 
     cd -
     updateFile $skin $filename 'action' "done"
     updateFile $skin $filename 'log' "`cat ${LOGFILE}`"
-- 
GitLab