diff --git a/cmd/kosli/archiveAttestationType.go b/cmd/kosli/archiveAttestationType.go index 8286d7c7b..687828dd5 100644 --- a/cmd/kosli/archiveAttestationType.go +++ b/cmd/kosli/archiveAttestationType.go @@ -52,7 +52,6 @@ func newArchiveAttestationTypeCmd(out io.Writer) *cobra.Command { } return err }, - Hidden: true, } addDryRunFlag(cmd) return cmd diff --git a/cmd/kosli/attestCustom.go b/cmd/kosli/attestCustom.go index e2962ab7a..face45df5 100644 --- a/cmd/kosli/attestCustom.go +++ b/cmd/kosli/attestCustom.go @@ -99,7 +99,6 @@ func newAttestCustomCmd(out io.Writer) *cobra.Command { Short: attestCustomShortDesc, Long: attestCustomLongDesc, Example: attestCustomExample, - //Hidden: true, PreRunE: func(cmd *cobra.Command, args []string) error { err := CustomMaximumNArgs(1, args) diff --git a/cmd/kosli/createAttestationType.go b/cmd/kosli/createAttestationType.go index 99184b578..8828b35f7 100644 --- a/cmd/kosli/createAttestationType.go +++ b/cmd/kosli/createAttestationType.go @@ -79,7 +79,6 @@ func newCreateAttestationTypeCmd(out io.Writer) *cobra.Command { RunE: func(cmd *cobra.Command, args []string) error { return o.run(args) }, - //Hidden: true, } cmd.Flags().StringVarP(&o.payload.Description, "description", "d", "", attestationTypeDescriptionFlag)