Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
pablo1v committed Jul 1, 2020
1 parent 3e8b361 commit e5a407b
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions dist/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -1903,10 +1903,7 @@ async function run() {
]);

try {
await Promise.all([
exec('commit', '-m', `"${commitMessage}"`),
exec('push'),
]);
await Promise.all([exec('commit', '-m', commitMessage), exec('push')]);
} catch (e) {
// Not Exit Process
}
Expand Down
5 changes: 1 addition & 4 deletions src/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,7 @@ async function run() {
]);

try {
await Promise.all([
exec('commit', '-m', `"${commitMessage}"`),
exec('push'),
]);
await Promise.all([exec('commit', '-m', commitMessage), exec('push')]);
} catch (e) {
// Not Exit Process
}
Expand Down

0 comments on commit e5a407b

Please sign in to comment.