Fix version test

This commit is contained in:
Asher 2020-01-16 18:09:19 -06:00
parent 7e7923706f
commit 25f18beda4
No known key found for this signature in database
GPG Key ID: D63C1EF81242354A

View File

@ -11,7 +11,7 @@ main() {
version=$(./binaries/code-server* --version | head -1) version=$(./binaries/code-server* --version | head -1)
echo "Got '$version' for the version" echo "Got '$version' for the version"
case $version in case $version in
*2.*-vsc1.41.1) exit 0 ;; *-vsc1.41.1) exit 0 ;;
*) exit 1 ;; *) exit 1 ;;
esac esac
} }