From 7e7923706f77a5a23290b6cf97647dd8855d378d Mon Sep 17 00:00:00 2001 From: Asher Date: Thu, 16 Jan 2020 17:59:11 -0600 Subject: [PATCH] Fix version generated from Git tag --- scripts/ci.bash | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/ci.bash b/scripts/ci.bash index 857c38b0..11d2be72 100755 --- a/scripts/ci.bash +++ b/scripts/ci.bash @@ -9,7 +9,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 code_server_version=${VERSION:-2.${TRAVIS_TAG:-${DRONE_TAG:-daily}}} + local code_server_version=${VERSION:-${TRAVIS_TAG:-${DRONE_TAG:-daily}}} # Remove everything that isn't the current VS Code source for caching # (otherwise the cache will contain old versions).