Bump cli-utils version to v0.19.0

This commit is contained in:
Morten Torkildsen
2020-08-20 19:34:12 -07:00
parent e39a5adc00
commit a1cd23c91d
3 changed files with 5 additions and 3 deletions

View File

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