diff --git a/lib/heroku/commands/app.rb b/lib/heroku/commands/app.rb index 87cfad0c8..971c7b939 100644 --- a/lib/heroku/commands/app.rb +++ b/lib/heroku/commands/app.rb @@ -202,9 +202,8 @@ def destroy info = heroku.info(app) url = info[:domain_name] || "http://#{info[:name]}.#{heroku.host}/" - display "Destroying #{url}" if confirm_command(app) - redisplay "Destroying #{url}..." + redisplay "Destroying #{url}... " heroku.destroy(app) if remotes = git_remotes(Dir.pwd) remotes.each do |remote_name, remote_app| @@ -212,7 +211,7 @@ def destroy shell "git remote rm #{remote_name}" end end - redisplay "Destroying #{url}... done" + display "done" end end