Fix typo in caldav post-sync hook git commit message

Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
This commit is contained in:
Joseph Turner 2021-08-09 00:52:00 -07:00 committed by Lukas Fleischer
parent 1351f8f0fe
commit 459a018e90

View File

@ -26,7 +26,7 @@ commit_dir() {
if [ -d .git ] && command -v git >/dev/null; then
git add "$@"
if ! git diff-index --quiet --cached HEAD; then
git commit -m "Automatic commit by the post-save hook"
git commit -m "Automatic commit by the post-sync hook"
fi
fi
}