1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 09:50:43 +00:00

fix version begin with v

This commit is contained in:
Darien Raymond 2018-10-05 22:05:43 +02:00
parent b7e7e4a2b5
commit ce4aee72b6
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -175,6 +175,9 @@ extract(){
getVersion(){
if [[ -n "$VERSION" ]]; then
NEW_VER="$VERSION"
if [[ ${NEW_VER} != v* ]]; then
NEW_VER=v${NEW_VER}
fi
return 4
else
VER=`/usr/bin/v2ray/v2ray -version 2>/dev/null`