Skip to content

Commit

Permalink
fix: include .nr and .sol files in builds (noir-lang#3039)
Browse files Browse the repository at this point in the history
  • Loading branch information
alexghr authored and Sakapoi committed Oct 19, 2023
1 parent f2d4306 commit 142ed4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@
# Custom filter with various file extensions that we rely upon to build packages
# Currently: `.nr`, `.sol`, `.sh`, `.json`, `.md`
filter = path: type:
(builtins.match ".*\.(sh|json|md)$" path != null) || (craneLib.filterCargoSources path type);
(builtins.match ".*\.(nr|sol|sh|json|md)$" path != null) || (craneLib.filterCargoSources path type);
};

# TODO(#1198): It'd be nice to include these flags when running `cargo clippy` in a devShell.
Expand Down

0 comments on commit 142ed4a

Please sign in to comment.