Fix checking out branch names with / chars

If git can't automatically figure out if the argument is a branch or
a path, it will need to be told explicitly by using `--`:

    Use '--' to separate paths from revisions, like this:
    'git <command> [<revision>...] -- [<file>...]'

Fixes: #106
This commit is contained in:
Christian Höltje 2020-10-12 10:17:25 -04:00
parent 9c1e5d1c6a
commit f905f00706
1 changed files with 1 additions and 1 deletions

View File

@ -43,7 +43,7 @@ _switch_to_branch() {
git fetch;
# Switch to branch from current Workflow run
git checkout $INPUT_BRANCH;
git checkout "$INPUT_BRANCH" --;
}
_add_files() {