Skip to content

Commit

Permalink
Don't include version numbers in check names
Browse files Browse the repository at this point in the history
This makes it impossible to mark them required
  • Loading branch information
9999years committed Mar 19, 2024
1 parent 4af1ad3 commit ca5441d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nix/packages/make-checks.nix
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ lib.pipe pkgs [
check:
lib.nameValuePair
# The Nix CLI doesn't like attribute names that contain dots.
(builtins.replaceStrings ["."] ["-"] check.name)
(builtins.replaceStrings ["."] ["-"] check.pname)
check
))
]
Expand Down

0 comments on commit ca5441d

Please sign in to comment.