commit 26a6a1190a7f9062c89a1babc5ad996e17ee2080 parent 47d4ec1825d3e24ae2cf682788e796e8674d0661 Author: Luke Smith <luke@lukesmith.xyz> Date: Fri, 1 Jul 2022 10:21:12 -0400 Merge pull request #852 from f380cedric/fix/case-insensitive-fs Fix: find & case-insensitive filesystem Diffstat:
M | bin/mailsync | | | 8 | ++------ |
1 file changed, 2 insertions(+), 6 deletions(-)
diff --git a/bin/mailsync b/bin/mailsync @@ -56,12 +56,8 @@ syncandnotify() { acc="$(echo "$account" | sed "s/.*\///")" if [ -z "$opts" ]; then mbsync "$acc"; else mbsync "$opts" "$acc"; fi new=$(find\ - "$HOME/.local/share/mail/$acc/INBOX/new/"\ - "$HOME/.local/share/mail/$acc/Inbox/new/"\ - "$HOME/.local/share/mail/$acc/inbox/new/"\ - "$HOME/.local/share/mail/$acc/INBOX/cur/"\ - "$HOME/.local/share/mail/$acc/Inbox/cur/"\ - "$HOME/.local/share/mail/$acc/inbox/cur/"\ + "$HOME/.local/share/mail/$acc/"[Ii][Nn][Bb][Oo][Xx]/new/\ + "$HOME/.local/share/mail/$acc/"[Ii][Nn][Bb][Oo][Xx]/cur/\ -type f -newer "$lastrun" 2> /dev/null) newcount=$(echo "$new" | sed '/^\s*$/d' | wc -l) case 1 in