From b05dd64caee870470f61117b3f557d4b515c9631 Mon Sep 17 00:00:00 2001 From: Hannah Wolfe Date: Tue, 11 Feb 2014 17:24:19 +0000 Subject: [PATCH] Update to `npm install` command fixes #1053 - npm install doesn't need a path to grunt, and fails on Windows if it has one - submodule update is handled by grunt (albeit badly... but let's fix that!) --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 81c24241c0..90bb0715da 100644 --- a/package.json +++ b/package.json @@ -26,7 +26,7 @@ "scripts": { "start": "node index", "test": "./node_modules/.bin/grunt validate --verbose", - "install": "git submodule update --init && bundle install && ./node_modules/.bin/grunt init" + "install": "bundle install && grunt init" }, "engines": { "node": "~0.10.0"