Skip to content

Commit

Permalink
fix(install): uninterrupted installation errors
Browse files Browse the repository at this point in the history
  • Loading branch information
cycjimmy committed Jan 13, 2020
1 parent b9f219a commit 3a7ccd6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 8 deletions.
5 changes: 1 addition & 4 deletions src/installSpecifyingVersionSemantic.task.js
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,5 @@ module.exports = async () => {
cwd: path.resolve(__dirname, '..')
});
core.debug(stdout);

if (stderr) {
return Promise.reject(stderr);
}
core.error(stderr);
};
5 changes: 1 addition & 4 deletions src/preInstallPlugins.task.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,5 @@ module.exports = async () => {
cwd: path.resolve(__dirname, '..')
});
core.debug(stdout);

if (stderr) {
return Promise.reject(stderr);
}
core.error(stderr);
};

0 comments on commit 3a7ccd6

Please sign in to comment.