aboutsummaryrefslogtreecommitdiff
path: root/bin
diff options
context:
space:
mode:
authorTom Ryder <tom@sanctum.geek.nz>2017-10-14 02:20:52 +1300
committerTom Ryder <tom@sanctum.geek.nz>2017-10-14 02:20:52 +1300
commit36a0e0b110dca01ca0117535f94f4809d19cba8f (patch)
tree537c9c052a30468b9e9ea8166ba8de7d14522ca3 /bin
parentTest existence and definedness for hash options (diff)
downloadMail-Run-Crypt-36a0e0b110dca01ca0117535f94f4809d19cba8f.tar.gz
Mail-Run-Crypt-36a0e0b110dca01ca0117535f94f4809d19cba8f.zip
Use lowercase carp/croak messages consistently
Diffstat (limited to 'bin')
-rwxr-xr-xbin/runcrypt8
1 files changed, 4 insertions, 4 deletions
diff --git a/bin/runcrypt b/bin/runcrypt
index ce0d109..fce767b 100755
--- a/bin/runcrypt
+++ b/bin/runcrypt
@@ -71,14 +71,14 @@ my ( $opt, $usage ) = describe_options(
# Print help if requested
if ( $opt->help ) {
print $usage->text
- or carp 'Failed stdout write';
+ or carp 'failed stdout write';
exit 0;
}
# Bail if run without arguments
if ( !@ARGV ) {
printf {*STDERR} $usage->text
- or carp 'Failed stderr write';
+ or carp 'failed stderr write';
exit 2;
}
@@ -202,11 +202,11 @@ C<runcrypt>, which is probably good enough in most cases.
=over 4
-=item Failed stdout write
+=item failed stdout usage write
Usage information could not be written to the standard output stream.
-=item Failed stderr write
+=item failed stderr usage write
Usage information could not be written to the standard error stream.