diff options
author | EuAndreh <eu@euandre.org> | 2018-11-25 15:15:47 -0200 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2018-11-25 15:15:47 -0200 |
commit | 4e7eccdc7a7793e8d83daba1f7562959e809c483 (patch) | |
tree | 073ca26731322929d5a02a8228da0c7d1bb1ff30 /scripts | |
parent | Update Spacemacs generated code. (diff) | |
download | dotfiles-4e7eccdc7a7793e8d83daba1f7562959e809c483.tar.gz dotfiles-4e7eccdc7a7793e8d83daba1f7562959e809c483.tar.xz |
Fix verbose configuration for mbsync in mail.sh.
Diffstat (limited to 'scripts')
-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 |