From 6b4c1a27fbe8cd1e487109d8c2fd473be19b2a9e Mon Sep 17 00:00:00 2001 From: martin Date: Mon, 19 Dec 2022 20:42:21 -0800 Subject: [PATCH] Fix stupid typo in target branch creation --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index ae8e1d2..b9e76ff 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -142,7 +142,7 @@ git config --global --add safe.directory "$CLONE_DIR" if [ ${new_target_branch} -ne 0 ]; then echo "[+] Creating target branch ${TARGET_BRANCH}" git branch ${TARGET_BRANCH} - git switch b1 + git switch ${TARGET_BRANCH} fi echo "[+] Adding git commit"