From 25f18beda4669cbf008cb42f169480406984f27f Mon Sep 17 00:00:00 2001 From: Asher Date: Thu, 16 Jan 2020 18:09:19 -0600 Subject: [PATCH] Fix version test --- scripts/test.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/test.sh b/scripts/test.sh index 2765e77c..b8496130 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 - *2.*-vsc1.41.1) exit 0 ;; + *-vsc1.41.1) exit 0 ;; *) exit 1 ;; esac }