Fix syntax error in travis default ZSH version

This commit is contained in:
James Dinsdale 2017-07-05 23:26:55 +01:00
parent c9993257ce
commit 9e3858bfca
No known key found for this signature in database
GPG key ID: DBCB56BD98007031

View file

@ -29,8 +29,8 @@ function update_homebrew() {
fi
wget $url
local sum=($($sumcmd $version.tar.gz))
sum=${sum[1]}
local -a sumparts; sumparts=($($sumcmd $version.tar.gz))
local sum=${sumparts[1]}
local oldIFS=$IFS
IFS=$'\n'
local formula=($(cat ./Formula/revolver.rb))