# File lib/heroku/commands/pg.rb, line 284 def exec_download(from, to, binary) if binary == :curl system("curl -o \"#{to}\" \"#{from}\"") elsif binary == :wget system("wget -O \"#{to}\" --no-check-certificate \"#{from}\"") else display("Unrecognized binary #{binary}") end end