Skip to content

Commit

Permalink
Add additional help text for the --partial_dir_finish flag.
Browse files Browse the repository at this point in the history
  • Loading branch information
mjkw31 committed Oct 2, 2024
1 parent 0186ecf commit fcf4236
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cmd/cron.go
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ func init() {
cronCmd.Flags().BoolVarP(&createPartial, "create_partial_dir", "p", false, "perform the walk, "+
"stat, and combine steps only")
cronCmd.Flags().StringVarP(&finishPartial, "partial_dir_finish", "z", "", "perform the basedir "+
"and tidy step on a partial run")
"and tidy step on a partial run, requires the name of the unique subdirectory the partial run files are in")
cronCmd.Flags().IntVarP(&multiInodes, "inodes_per_stat", "n",
defaultInodesPerJob, "number of inodes per parallel stat job")
cronCmd.Flags().IntVarP(&multiStatJobs, "num_stat_jobs", "j",
Expand Down
2 changes: 1 addition & 1 deletion cmd/multi.go
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ func init() {
multiCmd.Flags().BoolVarP(&createPartial, "create_partial_dir", "p", false, "perform the walk, "+
"stat, and combine steps only")
multiCmd.Flags().StringVarP(&finishPartial, "partial_dir_finish", "z", "", "perform the basedir "+
"and tidy step on a partial run")
"and tidy step on a partial run, requires the name of the unique subdirectory the partial run files are in")
multiCmd.Flags().IntVarP(&multiInodes, "inodes_per_stat", "n",
defaultInodesPerJob, "number of inodes per parallel stat job")
multiCmd.Flags().IntVarP(&multiStatJobs, "num_stat_jobs", "j",
Expand Down

0 comments on commit fcf4236

Please sign in to comment.