Skip to content

Commit

Permalink
refactor(Plugins): Improve error messaging on failed npm install
Browse files Browse the repository at this point in the history
  • Loading branch information
medikoo committed Sep 28, 2021
1 parent 82404cf commit 8bd0371
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion commands/plugin-install.js
Original file line number Diff line number Diff line change
Expand Up @@ -120,7 +120,7 @@ const npmInstall = async (name, { serviceDir }) => {
shell: true,
});
} catch (error) {
process.stdout.write(error.stdBuffer);
process.stdout.write(error.stderrBuffer);
throw error;
}
};
Expand Down

0 comments on commit 8bd0371

Please sign in to comment.