commit 4becb9bc4833d85a1627c7f74068732af85bb916 (patch)
parent ac83a40e84f10ee7d1b39a59d0c59f58aa63a8b5
Author: Alex Karle <alex@alexkarle.com>
Date: Mon, 13 Jul 2020 23:49:32 -0400
install: Touch muttrc.local on install
My mutt config errors out if the paired "muttrc.local" file doesn't
exist. This frequently occurs on systems where I use mutt to read system
(cron) email, but not personal mail (hence, no muttrc.local to use)
The easist solution is to just touch the file -- it isn't hurting
anything!
Diffstat:
1 file changed, 3 insertions(+), 0 deletions(-)
diff --git a/install.sh b/install.sh
@@ -52,3 +52,6 @@ done
# Special cases
try_ln $DOTFILES/vim $HOME/.vim
try_ln $DOTFILES/deps/pash/pash $HOME/bin/pash
+
+# Touch files expected to be in the install
+touch $HOME/.config/mutt/muttrc.local