From 2575f6e76997d217b5ec391c25c1f4352511e8c1 Mon Sep 17 00:00:00 2001 From: Tiemen van Olst Date: Mon, 8 Sep 2025 15:36:33 +0200 Subject: [PATCH] add --- entrypoint.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/entrypoint.sh b/entrypoint.sh index adb7263..33d1e3c 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -4,6 +4,8 @@ set -e # Als repo nog niet bestaat, clone if [ ! -d ".git" ]; then echo "Cloning repo..." + echo "GIT_REPO_URL: ${GIT_REPO_URL}" + echo "GIT_BRANCH: ${GIT_BRANCH:-main}" git clone -b ${GIT_BRANCH:-main} ${GIT_REPO_URL} . else echo "Pulling latest changes..."