Merge "Fix download upper constraints" into stable/ocata

This commit is contained in:
Zuul 2019-05-22 23:49:52 +00:00 committed by Gerrit Code Review
commit 8ffcbf8baf
1 changed files with 1 additions and 1 deletions

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
}