Skip to content

Commit

Permalink
removing on from dev feature flag
Browse files Browse the repository at this point in the history
  • Loading branch information
theFong committed Nov 12, 2021
1 parent afa3df1 commit 0aaa325
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/cmd/cmd.go
Original file line number Diff line number Diff line change
Expand Up @@ -90,13 +90,13 @@ func createCmdTree(cmd *cobra.Command, t *terminal.Terminal) {
// dev feature toggle
if isDev() {
cmd.AddCommand(sshall.NewCmdSSHAll())
cmd.AddCommand(on.NewCmdOn())
}

cmd.AddCommand(start.NewCmdStart(t))
cmd.AddCommand(stop.NewCmdStop(t))
cmd.AddCommand(delete.NewCmdDelete(t))
cmd.AddCommand(reset.NewCmdReset(t))
cmd.AddCommand(on.NewCmdOn())
}

func runHelp(cmd *cobra.Command, _ []string) {
Expand Down

0 comments on commit 0aaa325

Please sign in to comment.