Skip to content

Commit

Permalink
Fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
jirwin committed Oct 14, 2023
1 parent 459aa9f commit d732859
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion pkg/cli/cli.go
Original file line number Diff line number Diff line change
Expand Up @@ -267,7 +267,8 @@ func NewCmd[T any, PtrT *T](
cmd.AddCommand(capabilitiesCmd)

// Flags for file management
cmd.PersistentFlags().String("c1z-temp-dir", "", "The directory to store temporary files in. It must exist, and write access is required. Defaults to the OS temporary directory. ($BATON_C1Z_TEMP_DIR)")
cmd.PersistentFlags().String("c1z-temp-dir", "", "The directory to store temporary files in. It "+
"must exist, and write access is required. Defaults to the OS temporary directory. ($BATON_C1Z_TEMP_DIR)")
if err := cmd.PersistentFlags().MarkHidden("c1z-temp-dir"); err != nil {
return nil, err
}
Expand Down

0 comments on commit d732859

Please sign in to comment.