From 8ceb663400edb7e030ba989f3cc171dfbcaa4ddb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Malard?= Date: Mon, 4 Jun 2018 04:03:43 +0200 Subject: [PATCH] Fixes #392 - unable to contribute if default script shell is sh --- package.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/package.json b/package.json index d4368a8..fa0178a 100644 --- a/package.json +++ b/package.json @@ -3225,9 +3225,9 @@ "rebuild": "npm run reset && npm run lint && tsc -m commonjs -p ./ && npm run build-ui", "reset": "npm run clean && npm install --no-save", "watch": "tsc -watch -m commonjs -p ./", - "watch-ui": "pushd \"./src/ui\" && npm run watch --no-save && popd", + "watch-ui": "cd \"./src/ui\" && npm run watch --no-save && cd \"../..\"", - "postinstall": "node ./node_modules/vscode/bin/install && pushd \"./src/ui\" && npm install --no-save && popd", + "postinstall": "node ./node_modules/vscode/bin/install && cd \"./src/ui\" && npm install --no-save && cd \"../..\"", "prepush": "npm run build", "vscode:prepublish": "npm run reset && npm run bundle" },