mutt-wizard

fork of Luke Smiths mutt-wizard
git clone git://git.jakekoroman.com/mutt-wizard
Log | Files | Refs | README | LICENSE

commit 2eceb9fdb85b68a29a2a4e309ca6e7216f34d0ee
parent bc575177bdf04603c95fd185d4951577e6410491
Author: Luke Smith <luke@lukesmith.xyz>
Date:   Mon, 22 Apr 2019 15:36:56 -0400

move to avoid error

Diffstat:
Mbin/mw | 4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bin/mw b/bin/mw @@ -150,11 +150,11 @@ EOF read -r login printf "\033[0m" [ -z "$login" ] && login="$fulladdr" - getaccounts - for x in $(seq 1 9); do echo "$accounts" | grep "$x" || { export idnum="$x"; break ;}; done getpass getprofiles mkdir -p "$muttdir" "$accdir/$title" "$cachedir/mutt-wizard/$title/cache/bodies" "$HOME/.config/msmtp" + getaccounts + for x in $(seq 1 9); do echo "$accounts" | grep "$x" >/dev/null 2>&1 || { export idnum="$x"; break ;}; done [ ! -f "$HOME/.config/msmtp/config" ] && echo "$msmtp_header" > "$HOME/.config/msmtp/config" echo "$msmtp_profile" >> "$HOME/.config/msmtp/config" echo "$mutt_profile" > "$accdir/$idnum-$title.muttrc"