scripts: Fix slight bash error

This commit is contained in:
Mitchell Hashimoto 2014-01-16 12:16:12 -08:00
parent 7cc58436e0
commit e4d6a157f0
1 changed files with 1 additions and 1 deletions

View File

@ -15,7 +15,7 @@ verify_go () {
return 0
fi
local IFS=.
local i ver1=($1) ver2=($2)
local i ver1="$1" ver2="$2"
for ((i=${#ver1[@]}; i<${#ver2[@]}; i++))
do