Merge pull request 'Fix build' (#15) from fix-build into main

Reviewed-on: https://codeberg.org/svenvanheugten/git-check-assertions/pulls/15
This commit is contained in:
Sven van Heugten 2026-03-10 17:44:27 +01:00
commit 80ff74cdf9
2 changed files with 2 additions and 2 deletions

View file

@ -93,7 +93,7 @@ if [ -f .git-check-assertions-cache ]; then
if [ -n "$cached_commit" ]; then
cached_commits["$cached_commit"]=1
fi
done < .git-check-assertions-cache
done <.git-check-assertions-cache
fi
for commit_hash in "${commits[@]}"; do

View file

@ -55,7 +55,7 @@ resholve.mkDerivation {
installPhase = ''
runHook preInstall
mkdir -p $out/bin
cp $src/bin/git-check-assertions $out/bin/git-check-assertions
cp bin/git-check-assertions $out/bin/git-check-assertions
runHook postInstall
'';