From dfe38e7d2104275cf301a5a927274c674e298590 Mon Sep 17 00:00:00 2001 From: Sebastian Kippe Date: Tue, 9 Apr 2019 08:44:56 +0200 Subject: [PATCH] Don't run `npm install` on bootstrap When one wants to install, they can install. When one wants to bootstrap, they should be able to only bootstrap. --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 078d906..a7b98d4 100644 --- a/package.json +++ b/package.json @@ -12,7 +12,7 @@ "repl": "truffle exec scripts/repl.js", "seeds": "truffle exec scripts/seeds.js", "compile-contracts": "aragon contracts compile --all", - "bootstrap": "./scripts/every-app.sh \"npm install \" && npm run reset:hard && npm run seeds", + "bootstrap": "npm run reset:hard && npm run seeds", "reset": "npm run deploy:kit && npm run deploy:dao", "reset:hard": "npm run deploy:apps && npm run reset", "deploy:kit": "npm run compile-contracts && aragon contracts exec scripts/deploy-kit.js",