Merge "Fix download upper constraints" into stable/stein

This commit is contained in:
Zuul
2019-04-30 09:27:56 +00:00
committed by Gerrit Code Review

View File

@@ -31,7 +31,7 @@ download() {
return 1
else
log "Downloading from '${url}'"
curl ${url} -o "${destination}"
curl -L ${url} -o "${destination}"
fi
return 0
}