Skip to content

Commit

Permalink
Rename files for consistency
Browse files Browse the repository at this point in the history
Signed-off-by: Nicko Guyer <nicko.guyer@kaleido.io>
  • Loading branch information
nguyer committed Aug 16, 2021
1 parent cfc5a4f commit ffe55c2
Show file tree
Hide file tree
Showing 10 changed files with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions cmd/reset.go
Original file line number Diff line number Diff line change
Expand Up @@ -55,17 +55,17 @@ Note: this will also stop the stack if it is running.

if err := stackManager.LoadStack(stackName); err != nil {
return err
} else {
fmt.Printf("resetting FireFly stack '%s'... ", stackName)
if err := stackManager.StopStack(verbose); err != nil {
return err
}
if err := stackManager.ResetStack(verbose); err != nil {
return err
}
fmt.Printf("done\n\nYour stack has been reset. To start your stack run:\n\n%s start %s\n\n", rootCmd.Use, stackName)
}

fmt.Printf("resetting FireFly stack '%s'... ", stackName)
if err := stackManager.StopStack(verbose); err != nil {
return err
}
if err := stackManager.ResetStack(verbose); err != nil {
return err
}
fmt.Printf("done\n\nYour stack has been reset. To start your stack run:\n\n%s start %s\n\n", rootCmd.Use, stackName)

return nil
},
}
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit ffe55c2

Please sign in to comment.