From: short <> Date: Sun, 3 Mar 2002 19:04:47 +0000 (+0000) Subject: Typo (error message) fixed X-Git-Tag: bp_liverpm~167 X-Git-Url: http://git.jankratochvil.net/?p=nethome.git;a=commitdiff_plain;h=b1c611bf64b8124b69beaa61f2a77d108303785d Typo (error message) fixed --- diff --git a/bin/cvslinks b/bin/cvslinks index 9f77734..ec1df89 100755 --- a/bin/cvslinks +++ b/bin/cvslinks @@ -13,7 +13,7 @@ use constant ENTRIES=>"CVS/Entries"; our($opt_u,$opt_c,$opt_d,$opt_r,$opt_R,$opt_l,$opt_v); getopts "ucdrRlv"; -die "-u (update), -c (commit) or -R (delete) required" if !$opt_u && !$opt_c && !$opt_d; +die "-u (update), -c (commit) or -d (delete) required" if !$opt_u && !$opt_c && !$opt_d; die "-r (recursive)/-R (recursive w/o CVS) and -l (local) are conflicting" if ($opt_r || $opt_R) && $opt_l;