mirror of
https://github.com/cdr/code-server.git
synced 2025-12-08 09:23:00 +01:00
Skip VS Code dependencies by default
Co-authored-by: vatox11567 <vatox11567@reaxu.com>
This commit is contained in:
parent
f9114b4ce7
commit
c4590b71af
1 changed files with 5 additions and 1 deletions
|
|
@ -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
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue