From d410b4b78c93b7ee255fcf42581bc4cd602fa5fa Mon Sep 17 00:00:00 2001 From: Luke Roberts Date: Wed, 25 Mar 2015 21:00:29 -0700 Subject: [PATCH] indicate a successful removal of a machine Signed-off-by: Luke Roberts --- commands.go | 2 ++ 1 file changed, 2 insertions(+) diff --git a/commands.go b/commands.go index 7c93ecbd9f..6d9768f531 100644 --- a/commands.go +++ b/commands.go @@ -653,6 +653,8 @@ func cmdRm(c *cli.Context) { } if isError { log.Fatal("There was an error removing a machine. To force remove it, pass the -f option. Warning: this might leave it running on the provider.") + } else { + log.Print("The machine was successfully removed") } }