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 4a6a57d

Browse files
committedJun 17, 2022
refactor: add SKIP_SUBMODULE_DEPS to postinstall
1 parent 90f180d commit 4a6a57d

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed
 

‎ci/dev/postinstall.sh

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,11 @@ main() {
2929

3030
install-deps test
3131
install-deps test/e2e/extensions/test-extension
32-
install-deps lib/vscode
32+
# We don't need these when running the integration tests
33+
# so you can pass SKIP_SUBMODULE_DEPS
34+
if [[ ! ${SKIP_SUBMODULE_DEPS-} ]]; then
35+
install-deps lib/vscode
36+
fi
3337
}
3438

3539
main "$@"

0 commit comments

Comments
 (0)
Please sign in to comment.