shlist

share and manage lists between multiple people
Log | Files | Refs

commit 9dbf7ee862c1ff5059f07b6c705428db199bd0fa
parent bd7a12fe26cf38c944b9b8ae8783899a1564d4f8
Author: kyle <kyle@0x30.net>
Date:   Sun, 27 Dec 2015 20:41:09 -0700

sl: exit clean on SIGINT also

Diffstat:
Msl | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/sl b/sl @@ -18,6 +18,7 @@ my %args; getopts("p:t", \%args); $SIG{TERM} = sub { exit }; +$SIG{INT} = sub { exit }; my $db_file = "db"; # EXLOCK needs to be 0 because SQLite expects it to be