diff options
author | Mattias Andrée <maandree@kth.se> | 2021-06-25 18:09:21 +0200 |
---|---|---|
committer | Mattias Andrée <maandree@kth.se> | 2021-06-25 18:09:21 +0200 |
commit | 6022e47b19161375fd2159299def5c76c915956d (patch) | |
tree | a863536cd6bf4b5c607ea00993e5666602ef8fd5 /claws-mail | |
parent | Add instructions to README (diff) | |
download | dotfiles-6022e47b19161375fd2159299def5c76c915956d.tar.gz dotfiles-6022e47b19161375fd2159299def5c76c915956d.tar.bz2 dotfiles-6022e47b19161375fd2159299def5c76c915956d.tar.xz |
Fix bugs
Signed-off-by: Mattias Andrée <maandree@kth.se>
Diffstat (limited to 'claws-mail')
-rw-r--r-- | claws-mail/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/claws-mail/Makefile b/claws-mail/Makefile index 0c431e4..8a3b141 100644 --- a/claws-mail/Makefile +++ b/claws-mail/Makefile @@ -14,12 +14,12 @@ install: mkdir -p -- ~/.var/mail; \ fi ln -sf -- .var/mail ~/Mail - test -e ~/.hidden && grep '^Mail$' < ~/.hidden || printf '%s\n' "Mail" >> ~/.hidden + test -e ~/.hidden && grep '^Mail$$' < ~/.hidden || printf '%s\n' "Mail" >> ~/.hidden uninstall: -unlink -- ~/.claws-mail/clawsrc -rmdir -- ~/.claws-mail -unlink -- ~/Mail - -test ! -e ~/.hidden || grep -v '^Mail$' < ~/.hidden | sponge ~/.hidden + -test ! -e ~/.hidden || grep -v '^Mail$$' < ~/.hidden | sponge ~/.hidden .PHONY: install uninstall |