Merge pull request #3025 from seans3/live-command-fix

Small change to live commands retrieval
This commit is contained in:
Jeff Regan
2020-09-22 09:19:27 -07:00
committed by GitHub

View File

@@ -54,9 +54,9 @@ func GetLive(name string) *cobra.Command {
cmd.AddCommand(
applyCmd,
initcmd.NewCmdInit(f, ioStreams),
preview.GetPreviewRunner(f, ioStreams).Command,
preview.PreviewCommand(f, ioStreams),
diff.NewCmdDiff(f, ioStreams),
destroy.GetDestroyRunner(f, ioStreams).Command)
destroy.DestroyCommand(f, ioStreams))
return cmd
}