From 2bd703b2db5ef5cd83ecdb1d7a32fb4d73eddec6 Mon Sep 17 00:00:00 2001 From: Renan DelValle Date: Tue, 4 Dec 2018 18:36:47 -0800 Subject: [PATCH] Bug fix, print results instead of details. --- cmd/stop.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/stop.go b/cmd/stop.go index 4fe45dd..bcb6624 100644 --- a/cmd/stop.go +++ b/cmd/stop.go @@ -91,6 +91,6 @@ func stopUpdate(cmd *cobra.Command, args []string) { if toJson{ fmt.Println(toJSON(resp.GetResult_())) } else { - fmt.Println(resp.GetDetails()) + fmt.Println(resp.GetResult_()) } }