Skip to content

Commit c810c91

Browse files
adjust help text
1 parent f1a645a commit c810c91

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

cmd/localtest.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ import (
1919

2020
func init() {
2121
rootCmd.AddCommand(localTestCmd)
22-
localTestCmd.Flags().BoolVarP(&verboseOutput, "verbose", "v", false, "show detailed output for every step")
22+
localTestCmd.Flags().BoolVarP(&verboseOutput, "verbose", "v", false, "show detailed final output for every step")
2323
}
2424

2525
var localTestCmd = &cobra.Command{

cmd/run.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ func init() {
88
rootCmd.AddCommand(runCmd)
99
runCmd.Flags().BoolVarP(&forceSubmit, "submit", "s", false, "shortcut flag to submit after running")
1010
runCmd.Flags().BoolVar(&debugSubmission, "debug", false, "log submission request/response debug output")
11-
runCmd.Flags().BoolVarP(&verboseOutput, "verbose", "v", false, "show detailed output for every step")
11+
runCmd.Flags().BoolVarP(&verboseOutput, "verbose", "v", false, "with --submit, show detailed final output for every step")
1212
}
1313

1414
// runCmd represents the run command

cmd/submit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ var (
2626
func init() {
2727
rootCmd.AddCommand(submitCmd)
2828
submitCmd.Flags().BoolVar(&debugSubmission, "debug", false, "log submission request/response debug output")
29-
submitCmd.Flags().BoolVarP(&verboseOutput, "verbose", "v", false, "show detailed output for every step")
29+
submitCmd.Flags().BoolVarP(&verboseOutput, "verbose", "v", false, "show detailed final output for every step")
3030
}
3131

3232
// submitCmd represents the submit command

0 commit comments

Comments
 (0)