this might actually werk

This commit is contained in:
Luke Smith
2019-04-21 22:21:57 -04:00
parent da764165f5
commit 9fbb5e6832
2 changed files with 6 additions and 6 deletions

6
bin/mw
View File

@ -265,15 +265,13 @@ asktype() { while : ; do
*) echo "Write out either yes or no completely. Try again or press ctrl-c to quit." ;;
esac; done ;}
init() { \
echo "Initializing a mutt-wizard configuration..."
[ -f "$muttdir/muttrc" ] && echo "There is already a preexisting config. Purge the previous to reinit." && return 1
init() { echo "Initializing a mutt-wizard configuration..."
[ -f "$accdir" ] && echo "There is already a preexisting config. Purge the previous to reinit." && return 1
mkdir -p "$muttdir" "$accdir"
cp -v "$muttshare/mailcap" "$muttdir"
cp -v "$muttshare/muttrc" "$muttdir"
}
case "$1" in
init) init ;;
ls) list ;;