Skip to content

Commit

Permalink
Merge pull request #3987 from kazuhitoyokoi/master-fixproject
Browse files Browse the repository at this point in the history
Ignore commit error in project feature
  • Loading branch information
knolleary committed Dec 27, 2022
2 parents 4adc6b2 + 156c398 commit b3ce0c0
Showing 1 changed file with 2 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,6 +71,8 @@ function runGitCommand(args,cwd,env,emit) {
err.code = "git_missing_user";
} else if (/name consists only of disallowed characters/i.test(stderr)) {
err.code = "git_missing_user";
} else if (/nothing (add )?to commit/i.test(stdout)) {
return stdout;
}
throw err;
})
Expand Down

0 comments on commit b3ce0c0

Please sign in to comment.