Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] fix(insiders): windows #1690

Merged
merged 1 commit into from
Oct 10, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions prepare_vscode.sh
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ if [[ "${OS_NAME}" == "linux" ]]; then
fi

if [[ "${OS_NAME}" == "osx" ]]; then
CHILD_CONCURRENCY=1 yarn --network-timeout 180000
CHILD_CONCURRENCY=1 yarn --frozen-lockfile --network-timeout 180000

yarn postinstall
else
Expand All @@ -81,7 +81,7 @@ else
git am --3way --whitespace=fix ../../build/npm/gyp/patches/gyp_spectre_mitigation_support.patch
npm install

npm_config_node_gyp=$( pwd )
npm_config_node_gyp="$( pwd )/bin/node-gyp.js"
export npm_config_node_gyp

cd ../..
Expand All @@ -91,7 +91,7 @@ else
export npm_config_arm_version=7
fi

CHILD_CONCURRENCY=1 yarn --check-files --network-timeout 180000
CHILD_CONCURRENCY=1 yarn --frozen-lockfile --check-files --network-timeout 180000
fi

setpath() {
Expand Down