1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Silence the output downloading a file

This output isn't used anywhere for assertions so we can simply remove
it. The introducing commit was f238d495.
This commit is contained in:
Robin Dupret 2014-07-11 22:02:16 +02:00
parent 132d400b6f
commit a563f013d4

View file

@ -10,7 +10,6 @@ require 'tmpdir'
class Downloader
def self.download(from, to)
unless File.exist?(to)
$stderr.puts "Downloading #{from} to #{to}"
unless File.exist?(File.dirname(to))
system "mkdir -p #{File.dirname(to)}"
end