Silence output of git pull in entrypoint script to reduce log clutter
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
gyurix
2025-08-07 15:28:26 +02:00
parent e343bc2cb5
commit 56e2f6f05d

View File

@@ -522,9 +522,7 @@ get_repositories() {
GIT_HTTP_CONNECT_TIMEOUT=10 GIT_HTTP_TIMEOUT=30 git clone $REPO /tmp/$BASE >/dev/null
else
cd /tmp/$BASE
echo "Starting git pull for $BASE"
GIT_HTTP_CONNECT_TIMEOUT=10 GIT_HTTP_TIMEOUT=30 git pull
echo "Finished git pull for $BASE"
GIT_HTTP_CONNECT_TIMEOUT=10 GIT_HTTP_TIMEOUT=30 git pull >/dev/null
fi
if [ -f "/tmp/$BASE/applications-tree.json" ]; then
TREES=$TREES" /tmp/$BASE/applications-tree.json"