Add logging for git pull operation in entrypoint script

This commit is contained in:
gyurix
2025-08-07 13:21:40 +02:00
parent 27c5be7964
commit b049833844

View File

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