Skip to content

Commit

Permalink
Allow new file
Browse files Browse the repository at this point in the history
  • Loading branch information
ThetaSinner committed Jul 16, 2024
1 parent 2c46516 commit 61b2a1c
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.yaml$" path != null;
nonCargoBuildFiles = path: _type: builtins.match ".*(conductor-config.yaml|conductor-config-ci.yaml)$" path != null;
includeFilesFilter = path: type:
(craneLib.filterCargoSources path type) || (nonCargoBuildFiles path type);

Expand Down

0 comments on commit 61b2a1c

Please sign in to comment.