actually terminate the script on Ctrl-C (#236)

In my [PR 224](https://github.com/LukeSmithxyz/mutt-wizard/pull/224), I
introduced a bug.  While I was catching SIGINT with the trap statement,
I did not actually exit the script and returned into the shell.

Fixes https://github.com/LukeSmithxyz/mutt-wizard/issues/234
This commit is contained in:
Kriss 2019-06-07 18:12:20 +02:00 committed by Luke Smith
parent 9738316ab5
commit d7dd9f89fe
1 changed files with 1 additions and 1 deletions

2
bin/mw
View File

@ -316,7 +316,7 @@ synchronize_flags=true
gpg_path=$GPG"
echo "$nmbasic" > "$NOTMUCH_CONFIG" ;}
trap 'echo -e "\033[0m\n"' INT
trap 'echo -e "\033[0m\n"; exit' STOP INT ABRT KILL
case "$1" in
ls) list ;;