Skip to content

Commit

Permalink
fix(flake): update source filter
Browse files Browse the repository at this point in the history
  • Loading branch information
kwaa committed Jul 26, 2024
1 parent 6b5b6bf commit 93a66a5
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -35,9 +35,9 @@
src = lib.cleanSourceWith {
name = "source";
src = ./.;
filter =
path: type:
filter = path: type:
(lib.hasInfix "/contrib/" path)
|| (lib.hasInfix "/crates/activitypub-federation/docs/" path)
|| (lib.hasInfix "/crates/backend/assets/" path)
|| (craneLib.filterCargoSources path type);
};
Expand Down

0 comments on commit 93a66a5

Please sign in to comment.