summaryrefslogtreecommitdiff
path: root/FS/bin
diff options
context:
space:
mode:
authorMitch Jackson <mitch@freeside.biz>2019-05-27 17:12:47 -0400
committerMitch Jackson <mitch@freeside.biz>2019-05-27 17:12:47 -0400
commit5e3e809798a51b3b1535eaeedb9747ea74a91560 (patch)
tree55d3b8d910d464a3c65b3458967c061ac3e6fb95 /FS/bin
parentd397c0135075feca088abf09e801ceb18d425f10 (diff)
RT# 82906 Fix typos in script help text
Diffstat (limited to 'FS/bin')
-rwxr-xr-xFS/bin/freeside-issue-credit-for-taxnums8
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")