Bug fix, print results instead of details.

This commit is contained in:
Renan DelValle 2018-12-04 18:36:47 -08:00
parent 38630d8b94
commit 2bd703b2db
No known key found for this signature in database
GPG key ID: C240AD6D6F443EC9

View file

@ -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_())
}
}