Merge pull request #1427 from NickPresta/master

Updating check for version when on devel.
This commit is contained in:
Mitchell Hashimoto 2014-09-01 21:28:34 -07:00
commit 82a3a7ddfd
1 changed files with 4 additions and 0 deletions

View File

@ -14,6 +14,10 @@ verify_go () {
return 0
fi
if [[ "$2" == "devel" ]]; then
return 0
fi
local IFS=.
local i ver1=($1) ver2=($2)