Use the absolute path for the git-sync script

This commit is contained in:
Ohad Livne 2025-06-04 22:47:33 +03:00
parent fb15ba44c1
commit e261193d94
Signed by: libohad-dev
GPG key ID: 34FDC68B51191A4D

View file

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