From 6e24f0504d4abc4a8cbc76709fc3437946beaf4a Mon Sep 17 00:00:00 2001 From: Katharina Irrgang Date: Mon, 3 Apr 2017 14:52:52 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=A8=20=20hide=20npm=20error=20log=20if?= =?UTF-8?q?=20running=20npm=20run=20init=20(#8250)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit refs #8235 - users share the general npm error log, which won't help - so it's better to hide this log --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index abb1e2379e..c318a168cc 100644 --- a/package.json +++ b/package.json @@ -20,7 +20,7 @@ "scripts": { "start": "node index", "test": "grunt validate --verbose", - "init": "npm install -g knex-migrator ember-cli grunt-cli && npm install && grunt init" + "init": "npm install -g knex-migrator ember-cli grunt-cli && npm install && grunt init || true" }, "engines": { "node": "^4.2.0 || ^6.5.0"