df2daf524d
Signed-off-by: Nico Schottelius <nico@manager.schottelius.org>
9 lines
127 B
Bash
Executable file
9 lines
127 B
Bash
Executable file
#!/bin/sh
|
|
|
|
set -e
|
|
|
|
file=.notmuch/dump.xz
|
|
|
|
cd ~/Maildir
|
|
notmuch dump | xz > "$file"
|
|
git commit -m "Update notmuch dump" "$file"
|