From e261193d947fb379ea64d6e35c172fe28dfea318 Mon Sep 17 00:00:00 2001 From: Ohad Livne Date: Wed, 4 Jun 2025 22:47:33 +0300 Subject: [PATCH] Use the absolute path for the git-sync script --- .local/bin/sync-git-repos | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.local/bin/sync-git-repos b/.local/bin/sync-git-repos index c6d5a91..d0ff8a3 100755 --- a/.local/bin/sync-git-repos +++ b/.local/bin/sync-git-repos @@ -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 }