Skip to content

Commit

Permalink
doc: fix fileset filtering (#784)
Browse files Browse the repository at this point in the history
  • Loading branch information
haraldh authored Jan 22, 2025
1 parent c5b7075 commit 8493764
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/source-filtering.md
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ let
# Default files from crane (Rust and cargo files)
(craneLib.fileset.commonCargoSources unfilteredRoot)
# Also keep any markdown files
(lib.fileset.fileFilter (file: file.hasExt == "md") unfilteredRoot)
(lib.fileset.fileFilter (file: file.hasExt "md") unfilteredRoot)
# Example of a folder for images, icons, etc
(lib.fileset.maybeMissing ./assets)
];
Expand Down

0 comments on commit 8493764

Please sign in to comment.