Skip to content

Commit 8ceb663

Browse files
cmalardeamodio
authored andcommitted
Fixes #392 - unable to contribute if default script shell is sh
1 parent fe4a071 commit 8ceb663

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3225,9 +3225,9 @@
32253225
"rebuild": "npm run reset && npm run lint && tsc -m commonjs -p ./ && npm run build-ui",
32263226
"reset": "npm run clean && npm install --no-save",
32273227
"watch": "tsc -watch -m commonjs -p ./",
3228-
"watch-ui": "pushd \"./src/ui\" && npm run watch --no-save && popd",
3228+
"watch-ui": "cd \"./src/ui\" && npm run watch --no-save && cd \"../..\"",
32293229

3230-
"postinstall": "node ./node_modules/vscode/bin/install && pushd \"./src/ui\" && npm install --no-save && popd",
3230+
"postinstall": "node ./node_modules/vscode/bin/install && cd \"./src/ui\" && npm install --no-save && cd \"../..\"",
32313231
"prepush": "npm run build",
32323232
"vscode:prepublish": "npm run reset && npm run bundle"
32333233
},

0 commit comments

Comments
 (0)