# File lib/heroku/command.rb, line 175
    def self.confirmation_required(app, message)
      display
      display
      display message
      display " !    To proceed, type \"#{app}\" or re-run this command with --confirm #{app}"
      display
      display "> ", false
      if ask.downcase != app
        display " !    Input did not match #{app}. Aborted."
        false
      else
        true
      end
    end