git-check-assertions.sh -> git-check-assertions

This commit is contained in:
Sven van Heugten 2026-02-22 07:07:10 +01:00
parent 8ac30906df
commit 9fb8507056
No known key found for this signature in database
GPG key ID: D612F88666F4F660
3 changed files with 2 additions and 2 deletions

View file

@ -7,7 +7,7 @@ end_of_line = lf
insert_final_newline = true
trim_trailing_whitespace = true
[*.sh]
[git-check-assertions]
indent_size = 2
[*.nix]

View file

@ -17,7 +17,7 @@
packages.default = pkgs.writeShellApplication {
name = "git-check-assertions";
runtimeInputs = [ pkgs.git ];
text = builtins.readFile ./git-check-assertions.sh;
text = builtins.readFile ./git-check-assertions;
};
devShells.default = pkgs.mkShell {
packages = with pkgs; [ bats ];