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 }