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"