Skip to content

Commit 24ff772

Browse files
committed
Do not hide outputFlag in help
1 parent 9b60cbc commit 24ff772

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

cli/azd/pkg/output/parameter.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ func AddOutputFlag(f *pflag.FlagSet, s *string, supportedFormats []Format, defau
2525
description := fmt.Sprintf("The output format (the supported formats are %s).", strings.Join(formatNames, ", "))
2626
f.StringVarP(s, outputFlagName, "o", string(defaultFormat), description)
2727
//preview:flag hide --output
28-
_ = f.MarkHidden(outputFlagName)
28+
// _ = f.MarkHidden(outputFlagName)
2929

3030
// Only error that can occur is "flag not found", which is not possible given we just added the flag on the previous line
3131
_ = f.SetAnnotation(outputFlagName, supportedFormatterAnnotation, formatNames)

0 commit comments

Comments
 (0)