# File lib/phusion_passenger/abstract_installer.rb, line 303
        def download(url, output)
                if PlatformInfo.find_command("wget")
                        return sh("wget", "-O", output, url)
                else
                        return sh("curl", url, "-f", "-L", "-o", output)
                end
        end