From 8dea4557f5fe3b55f57b186f3a134e6bbb31f620 Mon Sep 17 00:00:00 2001 From: Matej Focko Date: Sun, 29 Aug 2021 16:12:16 +0200 Subject: [PATCH] fix(vscode): Fix URLs and IP in update script Fixes #32 Signed-off-by: Matej Focko --- playbooks/roles/vscode/templates/update.sh.j2 | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/playbooks/roles/vscode/templates/update.sh.j2 b/playbooks/roles/vscode/templates/update.sh.j2 index 993c06a..91311b1 100644 --- a/playbooks/roles/vscode/templates/update.sh.j2 +++ b/playbooks/roles/vscode/templates/update.sh.j2 @@ -1,13 +1,13 @@ #!/bin/bash # for upstream -URL='https://go.microsoft.com/fwlink/?LinkId=723968' +URL='https://code.visualstudio.com/sha/download?build=insider&os=linux-x64' # for local # URL='https://gauss.mfocko.xyz/code-insiders.tar.gz' # for local over VPN (also use --no-check-certificate) -# URL='https://10.0.0.2/code-insiders.tar.gz' +# URL='https://172.16.0.2/code-insiders.tar.gz' echo ">>> Downloading"; wget $URL -O /tmp/code.tar.gz