From 6d78f62113a8f928c04c200e862b216465e1088a Mon Sep 17 00:00:00 2001 From: Carles Pina i Estany Date: Fri, 17 Mar 2023 00:14:44 +0100 Subject: [PATCH] Add debug information (on the git push step) --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 80d003e..ab8e2aa 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -149,4 +149,4 @@ git diff-index --quiet HEAD || git commit --message "$COMMIT_MESSAGE" echo "[+] Pushing git commit" # --set-upstream: sets de branch when pushing to a branch that does not exist -git push "$GIT_CMD_REPOSITORY" --set-upstream "$TARGET_BRANCH" +GIT_CURL_VERBOSE=1 GIT_TRACE=1 git push --verbose "$GIT_CMD_REPOSITORY" --set-upstream "$TARGET_BRANCH"