We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3a83ddf commit 0766ee6Copy full SHA for 0766ee6
lifecycleScripts/install.js
@@ -33,11 +33,11 @@ module.exports = function install() {
33
var spawnedNodePreGyp = spawn(nodePreGyp, args);
34
35
spawnedNodePreGyp.stdout.on("data", function(data) {
36
- console.info(data.toString());
+ console.info(data.toString().trim());
37
});
38
39
spawnedNodePreGyp.stderr.on("data", function(data) {
40
- console.error(data.toString());
+ console.error(data.toString().trim());
41
42
43
spawnedNodePreGyp.on("close", function(code) {
0 commit comments