diff options
author | Ben Sima <ben@bsima.me> | 2024-04-01 16:35:15 -0400 |
---|---|---|
committer | Ben Sima <ben@bsima.me> | 2024-04-01 16:35:15 -0400 |
commit | 99e114f5c598ce6321c81bbe41e212877a3c375c (patch) | |
tree | 07b2ac7c96c0970291bce7691aa58054bd1f965a /Biz/Ide | |
parent | 4c7327d144a1e1fd2bd2cfa6a9c49b838674bdd8 (diff) |
Make bild exception for git hooks
Apparently git hooks don't get called if they have a file extention, so these
weren't getting called at all since commit
904de577261e7024373e7a42fd763184764238f9. So this renames them back to the
extension-less versions, and adds an exception in bild for files in the
core.hooksPath directory.
Unfortunately this means Lint.hs will silently ignore these files, but I guess
that's okay for now.
Diffstat (limited to 'Biz/Ide')
-rwxr-xr-x | Biz/Ide/hooks/commit-msg (renamed from Biz/Ide/hooks/commit-msg.sh) | 0 | ||||
-rwxr-xr-x | Biz/Ide/hooks/post-applypatch (renamed from Biz/Ide/hooks/post-applypatch.sh) | 0 | ||||
-rwxr-xr-x | Biz/Ide/hooks/post-checkout (renamed from Biz/Ide/hooks/post-checkout.sh) | 0 | ||||
-rwxr-xr-x | Biz/Ide/hooks/post-commit (renamed from Biz/Ide/hooks/post-commit.sh) | 0 | ||||
-rwxr-xr-x | Biz/Ide/hooks/post-merge (renamed from Biz/Ide/hooks/post-merge.sh) | 0 | ||||
-rwxr-xr-x | Biz/Ide/hooks/post-rewrite (renamed from Biz/Ide/hooks/post-rewrite.sh) | 0 | ||||
-rwxr-xr-x | Biz/Ide/hooks/pre-auto-gc (renamed from Biz/Ide/hooks/pre-auto-gc.sh) | 0 | ||||
-rwxr-xr-x | Biz/Ide/hooks/pre-commit (renamed from Biz/Ide/hooks/pre-commit.sh) | 2 | ||||
-rwxr-xr-x | Biz/Ide/hooks/pre-push (renamed from Biz/Ide/hooks/pre-push.sh) | 0 | ||||
-rwxr-xr-x | Biz/Ide/hooks/reference-transaction (renamed from Biz/Ide/hooks/reference-transaction.sh) | 0 |
10 files changed, 1 insertions, 1 deletions
diff --git a/Biz/Ide/hooks/commit-msg.sh b/Biz/Ide/hooks/commit-msg index 64e400d..64e400d 100755 --- a/Biz/Ide/hooks/commit-msg.sh +++ b/Biz/Ide/hooks/commit-msg diff --git a/Biz/Ide/hooks/post-applypatch.sh b/Biz/Ide/hooks/post-applypatch index 5071dc5..5071dc5 100755 --- a/Biz/Ide/hooks/post-applypatch.sh +++ b/Biz/Ide/hooks/post-applypatch diff --git a/Biz/Ide/hooks/post-checkout.sh b/Biz/Ide/hooks/post-checkout index e4a0d67..e4a0d67 100755 --- a/Biz/Ide/hooks/post-checkout.sh +++ b/Biz/Ide/hooks/post-checkout diff --git a/Biz/Ide/hooks/post-commit.sh b/Biz/Ide/hooks/post-commit index cd1f195..cd1f195 100755 --- a/Biz/Ide/hooks/post-commit.sh +++ b/Biz/Ide/hooks/post-commit diff --git a/Biz/Ide/hooks/post-merge.sh b/Biz/Ide/hooks/post-merge index d2cfa63..d2cfa63 100755 --- a/Biz/Ide/hooks/post-merge.sh +++ b/Biz/Ide/hooks/post-merge diff --git a/Biz/Ide/hooks/post-rewrite.sh b/Biz/Ide/hooks/post-rewrite index 8b3237a..8b3237a 100755 --- a/Biz/Ide/hooks/post-rewrite.sh +++ b/Biz/Ide/hooks/post-rewrite diff --git a/Biz/Ide/hooks/pre-auto-gc.sh b/Biz/Ide/hooks/pre-auto-gc index c92a844..c92a844 100755 --- a/Biz/Ide/hooks/pre-auto-gc.sh +++ b/Biz/Ide/hooks/pre-auto-gc diff --git a/Biz/Ide/hooks/pre-commit.sh b/Biz/Ide/hooks/pre-commit index e7c34ab..b0f204a 100755 --- a/Biz/Ide/hooks/pre-commit.sh +++ b/Biz/Ide/hooks/pre-commit @@ -7,7 +7,7 @@ mapfile -t changed < <(git diff-index --cached --name-only HEAD) for ns in "${changed[@]}" do - version=$("${CODEROOT:?}"/Biz/Ide/version "$ns") + version=$("${CODEROOT:?}"/Biz/Ide/version.sh "$ns") if [[ $version -eq -1 ]]; then echo "info: version: $ns: deleted" elif [[ $version -lt 1 ]]; then diff --git a/Biz/Ide/hooks/pre-push.sh b/Biz/Ide/hooks/pre-push index 16f11d1..16f11d1 100755 --- a/Biz/Ide/hooks/pre-push.sh +++ b/Biz/Ide/hooks/pre-push diff --git a/Biz/Ide/hooks/reference-transaction.sh b/Biz/Ide/hooks/reference-transaction index ea0cce6..ea0cce6 100755 --- a/Biz/Ide/hooks/reference-transaction.sh +++ b/Biz/Ide/hooks/reference-transaction |