diff options
| author | Mitch Jackson <mitch@freeside.biz> | 2019-05-27 17:12:47 -0400 |
|---|---|---|
| committer | Mitch Jackson <mitch@freeside.biz> | 2019-05-27 17:49:02 -0400 |
| commit | f854721eb897e77cf6ec1f39d1073b493a0bd81c (patch) | |
| tree | 4ae5b2a27df69ab47ee57b8e0ae06036a65d1bbc | |
| parent | 1b832fbb0757e4f694528a0685a6875ab2abc50a (diff) | |
RT# 82906 Fix typos in script help text
| -rwxr-xr-x | FS/bin/freeside-issue-credit-for-taxnums | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/FS/bin/freeside-issue-credit-for-taxnums b/FS/bin/freeside-issue-credit-for-taxnums index 8b7a12252..016c14ed6 100755 --- a/FS/bin/freeside-issue-credit-for-taxnums +++ b/FS/bin/freeside-issue-credit-for-taxnums @@ -293,18 +293,18 @@ sub validate_opts { error_and_help( '--csv_dir is required' ) unless $csv_dir; - error_and_help( '--start_date is required' ) + error_and_help( '--start-date is required' ) unless $start_date; error_and_help( '--end-date is required' ) unless $end_date; error_and_help( '--taxnums is required' ) unless @taxnums; - error_and_help( '--credit-reasonnum is required with --apply-credits' ) + error_and_help( '--credit-reasonnum is required with --insert-credits' ) if $insert_credits && !$credit_reasonnum; - error_and_help( '--credit-addlinfo is required with --apply-credits' ) + error_and_help( '--credit-addlinfo is required with --insert-credits' ) if $insert_credits && !$credit_addlinfo; - error_and_help( "csv dir ($csv_dir) is not a writable directoryu" ) + error_and_help( "csv dir ($csv_dir) is not a writable directory" ) unless -d $csv_dir && -r $csv_dir; error_and_help( "start_date($start_date) is not a valid date string") |
