Fixed wget progress bar verbosity for external dep fetching.

This commit is contained in:
Joseph Birkner 2018-06-06 02:45:25 +02:00
parent 8f99dfae27
commit 6bb6702202
1 changed files with 1 additions and 1 deletions

View File

@ -50,7 +50,7 @@ def pull(sourcePath, dir=nil, opts={})
end
localPath = destDir + '/' + name + ext
system "mkdir -p #{File.dirname(localPath)}" or exit 1
system "wget -c '#{url}' -O #{localPath}" or exit 1
system "wget -nv -c '#{url}' -O #{localPath}" or exit 1
# Unzip localPath to destDir if it's a zip file
if isZip(name)
system "cd #{File.dirname(localPath)} && unzip -un #{File.basename(localPath)}" or exit 1