Skip to content

Commit

Permalink
🟢 check err on markhidden
Browse files Browse the repository at this point in the history
Signed-off-by: Dominik Richter <[email protected]>
  • Loading branch information
arlimus committed Mar 21, 2024
1 parent 09f9fb4 commit a1025a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions apps/cnquery/cmd/run.go
Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ func init() {
RunCmd.Flags().String("llx", "", "Generate the executable code bundle and save it to the specified file.")
RunCmd.Flags().MarkHidden("llx")
RunCmd.Flags().String("use-llx", "", "Run the code specified in the code bundle on disk")
RunCmd.Flags().MarkHidden("use-llx")
_ = RunCmd.Flags().MarkHidden("use-llx")
RunCmd.Flags().StringToString("annotations", nil, "Specify annotations for this run")
RunCmd.Flags().MarkHidden("annotations")
_ = RunCmd.Flags().MarkHidden("annotations")
}

var RunCmd = &cobra.Command{
Expand Down

0 comments on commit a1025a7

Please sign in to comment.