From c8fc54bfb1ba0fae592dee33a5f68843d9b41a4a Mon Sep 17 00:00:00 2001 From: Asher Date: Wed, 12 Feb 2020 18:03:53 -0600 Subject: [PATCH] Update VS Code version for CI --- scripts/ci.bash | 2 +- scripts/test.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/ci.bash b/scripts/ci.bash index e33a22c0..4a037848 100755 --- a/scripts/ci.bash +++ b/scripts/ci.bash @@ -21,7 +21,7 @@ function main() { # Get the version information. If a specific version wasn't set, generate it # from the tag and VS Code version. - local vscode_version=${VSCODE_VERSION:-1.41.1} + local vscode_version=${VSCODE_VERSION:-1.42.0} local code_server_version=${VERSION:-${TRAVIS_TAG:-${DRONE_TAG:-daily}}} # Remove everything that isn't the current VS Code source for caching diff --git a/scripts/test.sh b/scripts/test.sh index b8496130..08f78570 100755 --- a/scripts/test.sh +++ b/scripts/test.sh @@ -11,7 +11,7 @@ main() { version=$(./binaries/code-server* --version | head -1) echo "Got '$version' for the version" case $version in - *-vsc1.41.1) exit 0 ;; + *-vsc1.42.0) exit 0 ;; *) exit 1 ;; esac }