From fcf4236c3d2718794f340c667813f55e82794e9b Mon Sep 17 00:00:00 2001 From: Michael Woolnough Date: Wed, 2 Oct 2024 09:26:53 +0100 Subject: [PATCH] Add additional help text for the --partial_dir_finish flag. --- cmd/cron.go | 2 +- cmd/multi.go | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/cron.go b/cmd/cron.go index 66f19d1c..3acd2b54 100644 --- a/cmd/cron.go +++ b/cmd/cron.go @@ -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", diff --git a/cmd/multi.go b/cmd/multi.go index b9f3e463..abab38cd 100644 --- a/cmd/multi.go +++ b/cmd/multi.go @@ -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",