Skip to content

Commit

Permalink
Merge pull request #224 from technote-space/release/v1.0.1
Browse files Browse the repository at this point in the history
Release/v1.0.1
  • Loading branch information
technote-space authored Feb 9, 2020
2 parents 4e9c6e0 + 12a405a commit 3ca92d7
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@technote-space/github-action-helper",
"version": "1.0.0",
"version": "1.0.1",
"description": "Helper to filter GitHub Action.",
"author": {
"name": "Technote",
Expand Down
2 changes: 1 addition & 1 deletion src/git-helper.ts
Original file line number Diff line number Diff line change
Expand Up @@ -516,7 +516,7 @@ export default class GitHelper {
command: 'git push',
args: args.concat([url, `${branch}:refs/heads/${branch}`]),
quiet: this.isQuiet(),
altCommand: `git push${args.concat(['origin', `${branch}:refs/heads/${branch}`]).join(' ')}`,
altCommand: `git push ${args.concat(['origin', `${branch}:refs/heads/${branch}`]).join(' ')}`,
suppressError: true,
});
};
Expand Down

0 comments on commit 3ca92d7

Please sign in to comment.