Fix syntax error in doDownloadAllMods

This commit is contained in:
Vincent Rouille 2017-03-19 20:35:38 +01:00 committed by GitHub
parent 3b8419f530
commit bfdc893cea

View File

@ -1994,7 +1994,7 @@ doDownloadAllMods(){
local fail=0 local fail=0
local success=0 local success=0
for modid in $(getModIds); do for modid in $(getModIds); do
if isModUpdateAvailable $nodid; then if isModUpdateAvailable $modid; then
if doDownloadMod $modid; then if doDownloadMod $modid; then
success=1 success=1
else else