5
0
Fork 0
mirror of https://github.com/cycjimmy/semantic-release-action.git synced 2025-11-07 10:46:56 +00:00

fix(install): uninterrupted installation errors

This commit is contained in:
cycjimmy 2020-01-13 16:53:47 +08:00
parent b9f219a4d5
commit 3a7ccd6a7f
2 changed files with 2 additions and 8 deletions

View file

@ -17,8 +17,5 @@ module.exports = async () => {
cwd: path.resolve(__dirname, '..') cwd: path.resolve(__dirname, '..')
}); });
core.debug(stdout); core.debug(stdout);
core.error(stderr);
if (stderr) {
return Promise.reject(stderr);
}
}; };

View file

@ -22,8 +22,5 @@ module.exports = async () => {
cwd: path.resolve(__dirname, '..') cwd: path.resolve(__dirname, '..')
}); });
core.debug(stdout); core.debug(stdout);
core.error(stderr);
if (stderr) {
return Promise.reject(stderr);
}
}; };