default output to stdout

This commit is contained in:
CamrynCarter
2026-08-19 00:09:37 -04:00
committed by GitHub
parent 3d1f528e8f
commit d70063e887
3 changed files with 22 additions and 14 deletions
+1 -1
View File
@@ -11,5 +11,5 @@ type CreateManifestOpts struct {
func (o *CreateManifestOpts) AddFlags(cmd *cobra.Command) {
f := cmd.Flags()
f.StringVarP(&o.Output, "output", "o", "", "(Optional) Path to write the generated manifest to (default \"$STORENAME-manifest.yaml\")")
f.StringVarP(&o.Output, "output", "o", "", "(Optional) Path to write the generated manifest to (defaults to stdout)")
}