diff options
Diffstat (limited to 'contrib')
-rwxr-xr-x | contrib/caldav/hooks/post-sync | 2 |
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 } |