Skip to content

Commit

Permalink
fix(lib/mk-gh-actions-matrix): Escape package name which are not prop…
Browse files Browse the repository at this point in the history
…er nix identifiers
  • Loading branch information
PetarKirov committed Jan 25, 2024
1 parent b074a3a commit bb83f12
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/mk-gh-actions-matrix.nix
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
os = platform;
allowedToFail = builtins.elem system (p.passthru.allowedToFailOn or []);
inherit system package;
attrPath = "packages.${system}.${package}";
attrPath = "packages.${system}.${lib.strings.escapeNixIdentifier package}";
})
(builtins.attrNames self.packages.${system})
))
Expand Down

0 comments on commit bb83f12

Please sign in to comment.