From af4930911628533bc669ef1ac181e4ff1ab96ece Mon Sep 17 00:00:00 2001 From: Ken Odegard Date: Tue, 11 Jan 2022 10:21:56 -0600 Subject: [PATCH] Properly disambiguate between branch or file checkout --- entrypoint.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/entrypoint.sh b/entrypoint.sh index 0d87608..a89bea4 100755 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -60,7 +60,7 @@ _switch_to_branch() { else # Switch to branch from current Workflow run # shellcheck disable=SC2086 - git checkout $INPUT_BRANCH; + git checkout $INPUT_BRANCH --; fi }