diff options
author | Luke Smith <luke@lukesmith.xyz> | 2021-02-11 11:54:54 -0500 |
---|---|---|
committer | Luke Smith <luke@lukesmith.xyz> | 2021-02-11 11:54:54 -0500 |
commit | 7413dc6d5ad1fd85e316e49d0492d8e945162a4a (patch) | |
tree | fbf8f32bdca857361b0c70e6c26504186d8f9876 | |
parent | 423112a3ab31806f9c6a6c075b9cceaf31139583 (diff) |
since logons check before, delete not nec w/ error
-rwxr-xr-x | bin/mw | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -153,7 +153,7 @@ EOF } delete() { if [ -z "${fulladdr+x}" ]; then - echo "Select the account your would like to delete (by number):" + echo "Select the account you would like to delete (by number):" list || exit 1 read -r input match="^$input:" @@ -357,7 +357,7 @@ esac done case "$action" in list) list ;; - add) checkbasics && askinfo && getboxes && getprofiles && finalize || { delete ; exit 1 ;} ;; + add) checkbasics && askinfo && getboxes && getprofiles && finalize ;; delete) delete ;; sync) mailsync $fulladdr ;; toggle) togglecron ;; |