Properly disambiguate between branch or file checkout

This commit is contained in:
Ken Odegard 2022-01-11 10:21:56 -06:00
parent b244c38293
commit af49309116

View File

@ -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
}