From 2dd796f39cf117f1fb6b2481bab04a9c385fc99b Mon Sep 17 00:00:00 2001 From: Tiago Alfageme Date: Fri, 6 Feb 2026 11:13:24 +0100 Subject: [PATCH] VS code download URL update --- MacOS/Components/VSC/install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MacOS/Components/VSC/install.sh b/MacOS/Components/VSC/install.sh index 9c674ead..c642e06e 100644 --- a/MacOS/Components/VSC/install.sh +++ b/MacOS/Components/VSC/install.sh @@ -64,9 +64,9 @@ else ARCH=$(uname -m) echo "Detected architecture: $ARCH" if [[ "$ARCH" == "arm64" ]]; then - VSCODE_URL="https://code.visualstudio.com/sha/download?build=stable&os=darwin-arm64" + VSCODE_URL="https://update.code.visualstudio.com/latest/darwin-arm64/stable" else - VSCODE_URL="https://code.visualstudio.com/sha/download?build=stable&os=darwin" + VSCODE_URL="https://update.code.visualstudio.com/latest/darwin/stable" fi echo "Downloading VS Code from: $VSCODE_URL"