Skip to content

Commit

Permalink
fix: add '--' to checkout command to avoid ambiguity (#1051)
Browse files Browse the repository at this point in the history
* fix: add '--' to checkout command to avoid ambiguity

Signed-off-by: Kenji Miyake <kenji.miyake@tier4.jp>

* Update src/git-command-manager.ts

Co-authored-by: Peter Evans <18365890+peter-evans@users.noreply.github.com>

Co-authored-by: Peter Evans <18365890+peter-evans@users.noreply.github.com>
  • Loading branch information
kenji-miyake and peter-evans committed Jan 31, 2022
1 parent 3f60247 commit f22a7da
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions dist/index.js
Expand Up @@ -650,6 +650,8 @@ class GitCommandManager {
else {
args.push(ref);
}
// https://github.com/git/git/commit/a047fafc7866cc4087201e284dc1f53e8f9a32d5
args.push('--');
yield this.exec(args);
});
}
Expand Down
2 changes: 2 additions & 0 deletions src/git-command-manager.ts
Expand Up @@ -32,6 +32,8 @@ export class GitCommandManager {
} else {
args.push(ref)
}
// https://github.com/git/git/commit/a047fafc7866cc4087201e284dc1f53e8f9a32d5
args.push('--')
await this.exec(args)
}

Expand Down

0 comments on commit f22a7da

Please sign in to comment.