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..."