Archived
1
0

Fix vscode.sh

This commit is contained in:
Anmol Sethi
2020-02-20 18:36:38 -05:00
parent 65690fca65
commit 3a2644a2bc
3 changed files with 8 additions and 4 deletions

View File

@ -13,7 +13,13 @@ main() {
yarn vscode:patch &> /dev/null || true
# Install VS Code dependencies.
(cd lib/vscode && yarn)
# The second yarn is required as for whatever reason, we get
# NODE_MODULE_VERSION mismatch errors without it.
(
cd lib/vscode
yarn
yarn --ignore-scripts
)
}
main "$@"