From fb77aeeba302f0fa32687ccedc3c5e7ed9bb1d21 Mon Sep 17 00:00:00 2001 From: VpEngOps Date: Wed, 9 Sep 2026 16:17:48 -0500 Subject: [PATCH] fix: pre-push hook path (repo-root relative) --- qa/pre-push | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/qa/pre-push b/qa/pre-push index c908d60..bbe1d86 100755 --- a/qa/pre-push +++ b/qa/pre-push @@ -1,3 +1,4 @@ #!/bin/bash -# runs repo QA before any push -"$(dirname "$0")/site-qa.sh" +# runs repo QA before any push (gitea pre-push hook) +cd "$(dirname "$0")/../.." || exit 1 +exec ./qa/site-qa.sh