mirror of https://github.com/node-red/node-red.git
Merge pull request #3987 from kazuhitoyokoi/master-fixproject
Ignore commit error in project featurepull/3992/head
commit
b3ce0c0079
|
@ -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;
|
||||
})
|
||||
|
|
Loading…
Reference in New Issue