From fa44ef31bc79cc93b86706318a20449fab706c36 Mon Sep 17 00:00:00 2001 From: Thibaud Guillaume-Gentil Date: Fri, 6 May 2011 22:58:18 +0200 Subject: [PATCH] Moved stop "\n" --- lib/guard/interactor.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/guard/interactor.rb b/lib/guard/interactor.rb index 9568631..4acd9ed 100644 --- a/lib/guard/interactor.rb +++ b/lib/guard/interactor.rb @@ -9,10 +9,10 @@ module Guard end def stop - UI.info "Bye bye...", :reset => true + UI.info "Bye bye...\n", :reset => true ::Guard.listener.stop ::Guard.guards.each { |guard| ::Guard.supervised_task(guard, :stop) } - abort("\n") + abort end def reload