Skip pre-commit hooks in the git-sync cron job

This commit is contained in:
Ohad Livne 2025-06-04 22:47:37 +03:00
parent a86f247bea
commit 11ab7e5afb
Signed by: libohad-dev
GPG key ID: 34FDC68B51191A4D
2 changed files with 15 additions and 1 deletions

View file

@ -12,7 +12,7 @@ sync_repo () {
repo=$1
echo git-sync -s "${repo}"
( cd "${repo}" && "$(systemd-path user-state-private)"/git-sync/git-sync -s sync )
( cd "${repo}" && "$(systemd-path user-binaries)"/hookless-git-sync -s sync )
echo
}