diff --git a/app/Main.hs b/app/Main.hs
--- a/app/Main.hs
+++ b/app/Main.hs
@@ -2,6 +2,7 @@
 
 import Lib
 import Console.Options
+import System.IO
 
 main :: IO ()
 main = defaultMain $ do
@@ -10,6 +11,7 @@
   flagA    <- flag $ FlagLong "delete"
   allArgs  <- remainingArguments "FILE"
   action $ \toParam -> do
+      hSetBuffering stdout LineBuffering -- or even NoBuffering
       let reallyDelete = toParam flagA
       let stackName    = toParam allArgs
       case stackName of
diff --git a/forest-fire.cabal b/forest-fire.cabal
--- a/forest-fire.cabal
+++ b/forest-fire.cabal
@@ -1,5 +1,5 @@
 name:                forest-fire
-version:             0.1.0.2
+version:             0.1.1.0
 synopsis:            Recursively delete CloudFormation stacks and their dependants
 description:
   This simple tool will repeatedly query CloudFormation
