Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit acf0984

Browse files
committedSep 2, 2020
Fix npm post install to fetch extension dependencies
Closes #1961
1 parent de41646 commit acf0984

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed
 

‎ci/build/npm-postinstall.sh

+7
Original file line numberDiff line numberDiff line change
@@ -36,6 +36,13 @@ vscode_yarn() {
3636
yarn --production --frozen-lockfile
3737
cd extensions
3838
yarn --production --frozen-lockfile
39+
for ext_dir in */; do
40+
cd "$ext_dir"
41+
if [ -f package.json ]; then
42+
yarn --production --frozen-lockfile
43+
fi
44+
cd -
45+
done
3946
}
4047

4148
main "$@"

0 commit comments

Comments
 (0)
Please sign in to comment.