Skip to content

Commit

Permalink
Fix nonCargoBuildFiles
Browse files Browse the repository at this point in the history
  • Loading branch information
c12i committed Oct 30, 2024
1 parent c720e1b commit b243b05
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion nix/modules/workspace.nix
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ let
then pkgs.openssl # pkgsStatic is considered a cross build and this is not yet supported
else pkgs.pkgsStatic.openssl;

nonCargoBuildFiles = path: _type: builtins.match ".*(/conductor-config(conductor-config.yaml|conductor-config-ci.yaml|with*chc.yaml)|*/summariser/test*data/.*.json)$" path != null;
nonCargoBuildFiles = path: builtins.match ".*(/conductor-config/(conductor-config.yaml|conductor-config-ci.yaml|with.*chc.yaml)|.*/summariser/test-data/.*\.json)$" path != null;_type: builtins.match ".*(/conductor-config(conductor-config.yaml|conductor-config-ci.yaml|with*chc.yaml)|*/summariser/test*data/.*.json)$" path != null;
includeFilesFilter = path: type:
(craneLib.filterCargoSources path type) || (nonCargoBuildFiles path type);

Expand Down

0 comments on commit b243b05

Please sign in to comment.