lib/rocket_fuel/install/run.rb in rocket_fuel-0.0.6 vs lib/rocket_fuel/install/run.rb in rocket_fuel-0.0.7

- old
+ new

@@ -27,10 +27,16 @@ chef_install.run say('Done.') end say('Running rocket fuel recipes...this may take some time') run = RocketFuel::Install::RecipeRun.new - run.run + say('') + + if run.run + say("Congratuations! You're now running with RocketFuel!", :green) + else + say('Something went wrong.', :red) + end say('Done') end end end end