diff options
-rwxr-xr-x | scripts/mail.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scripts/mail.sh b/scripts/mail.sh index c8f6522..a6d5adb 100755 --- a/scripts/mail.sh +++ b/scripts/mail.sh @@ -1,5 +1,5 @@ if [ "$1" = "-s" ]; then - mbsync -a &>> /tmp/mbsync.log && notmuch new &>> /tmp/notmuch.log + mbsync -aV &>> /tmp/mbsync.log && notmuch new &>> /tmp/notmuch.log else - mbsync -aV && notmuch new + mbsync -a && notmuch new fi |