From c4590b71af01ceba5a098f59f28b3122fda8a8e4 Mon Sep 17 00:00:00 2001 From: Cursor Agent Date: Sun, 12 Oct 2025 23:36:57 +0000 Subject: [PATCH] Skip VS Code dependencies by default Co-authored-by: vatox11567 --- ci/dev/postinstall.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ci/dev/postinstall.sh b/ci/dev/postinstall.sh index 63aad7bcf..d06093db6 100755 --- a/ci/dev/postinstall.sh +++ b/ci/dev/postinstall.sh @@ -30,8 +30,12 @@ main() { install-deps test/e2e/extensions/test-extension # We don't need these when running the integration tests # so you can pass SKIP_SUBMODULE_DEPS - if [[ ! ${SKIP_SUBMODULE_DEPS-} ]]; then + # Skip VS Code dependencies by default to avoid kerberos build issues + # Set INSTALL_VSCODE_DEPS=1 to install them if needed + if [[ ${INSTALL_VSCODE_DEPS-} ]]; then install-deps lib/vscode + else + echo "Skipping VS Code dependencies installation (set INSTALL_VSCODE_DEPS=1 to install them)" fi }