From 072538d3835f7c3e385804e12570075a3d2e0232 Mon Sep 17 00:00:00 2001 From: Muhammad Atif Ali Date: Mon, 14 Oct 2024 18:04:58 +0500 Subject: [PATCH] fix(vscode-web): remove exit if extension installation fails. --- vscode-web/run.sh | 2 -- 1 file changed, 2 deletions(-) diff --git a/vscode-web/run.sh b/vscode-web/run.sh index ce8782f..7402c2d 100755 --- a/vscode-web/run.sh +++ b/vscode-web/run.sh @@ -72,14 +72,12 @@ for extension in "$${EXTENSIONLIST[@]}"; do output=$($VSCODE_WEB "$EXTENSION_ARG" --install-extension "$extension" --force) if [ $? -ne 0 ]; then echo "Failed to install extension: $extension: $output" - exit 1 fi done if [ "${AUTO_INSTALL_EXTENSIONS}" = true ]; then if ! command -v jq > /dev/null; then echo "jq is required to install extensions from a workspace file." - exit 0 fi WORKSPACE_DIR="$HOME"