aboutsummaryrefslogtreecommitdiff
path: root/sboul
diff options
context:
space:
mode:
authorB. Watson <yalhcru@gmail.com>2020-06-16 23:14:35 -0400
committerB. Watson <yalhcru@gmail.com>2020-06-16 23:14:35 -0400
commit5cc52f5f3bfb04aa02bcb99554fc739b50110951 (patch)
treee752c608429f13fc8c7163586ca70b2533eda3b5 /sboul
parentc3238e690a1f3254d282623e047f0124206de9b9 (diff)
downloadsbostuff-5cc52f5f3bfb04aa02bcb99554fc739b50110951.tar.gz
fix my stupidity in sboul
Diffstat (limited to 'sboul')
-rwxr-xr-xsboul2
1 files changed, 1 insertions, 1 deletions
diff --git a/sboul b/sboul
index 1f9b50d..646dd63 100755
--- a/sboul
+++ b/sboul
@@ -93,7 +93,7 @@ getopts('c:e:C:k:', \%opts);
die_usage("Unknown junk on command line: '$junk'") if $junk;
die_usage("No category (missing required -c arg)") unless $opts{c};
$category = get_category($opts{c});
-chomp($submail = $opts{e} || $ENV{SBO_EMAIL}
+$submail = $opts{e} || $ENV{SBO_EMAIL};
die_usage("No email address (use -e or else create ~/.sbostuff.cfg)") unless $submail;
$comments = $opts{C} || "";
$tags = $opts{k} || "";