aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJoseph Turner <joseph@breatheoutbreathe.in>2021-08-09 00:52:00 -0700
committerLukas Fleischer <lfleischer@calcurse.org>2021-10-16 11:54:45 -0400
commit459a018e90eccfbd3c2288bfce79ead6de4b512f (patch)
tree2a12a3c8cd8b27430653d0794089d54118dfea27
parent1351f8f0fea4cb3ccea8d65e3e2f5a8854abba75 (diff)
downloadcalcurse-459a018e90eccfbd3c2288bfce79ead6de4b512f.tar.gz
calcurse-459a018e90eccfbd3c2288bfce79ead6de4b512f.zip
Fix typo in caldav post-sync hook git commit message
Signed-off-by: Lukas Fleischer <lfleischer@calcurse.org>
-rwxr-xr-xcontrib/caldav/hooks/post-sync2
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/caldav/hooks/post-sync b/contrib/caldav/hooks/post-sync
index 62ebe11..db0059b 100755
--- a/contrib/caldav/hooks/post-sync
+++ b/contrib/caldav/hooks/post-sync
@@ -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
}