From: Don Armstrong Date: Sun, 12 Oct 2008 23:24:17 +0000 (+0000) Subject: * don't exit if TODODB is not set X-Git-Url: https://git.donarmstrong.com/?a=commitdiff_plain;h=32df38af449395dad06040387276b98e6551eb07;p=bin.git * don't exit if TODODB is not set --- diff --git a/stodo b/stodo index 2c4f6de..7cc9b5d 100755 --- a/stodo +++ b/stodo @@ -99,7 +99,7 @@ my %options = (quiet => 0, GetOptions(\%options,'debug|d+','help|h|?','man|m','quiet|q+','simulate|s+'); -pod2usage() if $options{help} or not exists $ENV{TODODB}; +pod2usage() if $options{help}; pod2usage({verbose=>2}) if $options{man}; $DEBUG = $options{debug};