From b2e29a8ab439cc49acd606310139b9333cce5bef Mon Sep 17 00:00:00 2001 From: Pierre Rudloff Date: Wed, 16 Mar 2016 00:21:27 +0100 Subject: [PATCH] Make postinstall script compatible with Windows --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index 5aafc35..c784137 100644 --- a/package.json +++ b/package.json @@ -18,6 +18,6 @@ "url": "https://github.com/Rudloff/alltube.git" }, "scripts": { - "postinstall": "./node_modules/bower/bin/bower install; ./node_modules/grunt-cli/bin/grunt" + "postinstall": "node node_modules/bower/bin/bower install && node node_modules/grunt-cli/bin/grunt" } }