summaryrefslogtreecommitdiff
path: root/bin/mw
diff options
context:
space:
mode:
authorLuke Smith <Luke Smith>2022-07-01 10:14:54 -0400
committerLuke Smith <Luke Smith>2022-07-01 10:14:54 -0400
commit47d4ec1825d3e24ae2cf682788e796e8674d0661 (patch)
tree52373c46f688acad6fba25179e01132be08be891 /bin/mw
parentef5bac2b55e3bd665d103eff4ea435ecaa9db22c (diff)
parentcaf2681891eb3fbe04bd10ba30369ffe8e8616d4 (diff)
Merge branch 'wrigleyster-master'
Diffstat (limited to 'bin/mw')
-rwxr-xr-xbin/mw2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/mw b/bin/mw
index f0b46e2..c71d662 100755
--- a/bin/mw
+++ b/bin/mw
@@ -262,7 +262,7 @@ togglecron() { cron="$(mktemp)"
sed -ibu /mailsync/d "$cron"; rm -f "$cron"bu
else
echo "Adding automatic mailsync every ${cronmin:-10} minutes..."
- echo "*/${cronmin-10} * * * * $prefix/bin/mailsync" >> "$cron"
+ echo "*/${cronmin:-10} * * * * $prefix/bin/mailsync -q" >> "$cron"
fi &&
crontab "$cron"; rm -f "$cron" ;}