diff options
| author | outremonde <outremonde@vivaldi.net> | 2025-06-11 13:16:49 -0400 |
|---|---|---|
| committer | outremonde <outremonde@vivaldi.net> | 2025-06-11 13:16:49 -0400 |
| commit | 711d401b3e8ddd1b6a4dfa7f1875afe12bee9845 (patch) | |
| tree | ed1e4a1f6c03b488d10c5db84d190e52ac1ea9f3 /lib | |
| parent | 102ca76d9af68e9bb2422cf9e4445510e7860ec2 (diff) | |
attempted to fix umport
Former-commit-id: 18071da78e48b76d5e308bb887e049db46421894
Diffstat (limited to 'lib')
| -rwxr-xr-x | lib/umport.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/umport.nix b/lib/umport.nix index 5cd79a6..0a5a022 100755 --- a/lib/umport.nix +++ b/lib/umport.nix @@ -11,7 +11,7 @@ excludedFiles = filter (path: pathIsRegularFile path) exclude; excludedDirs = filter (path: pathIsDirectory path) exclude; isExcluded = path: - if (elem path excludedFiles) || ("flake.nix" == path) || ("shell.nix" == path) + if (elem path excludedFiles) || (hasSuffix "/flake.nix" path) || (hasSuffix "/shell.nix" path) then true else (filter (excludedDir: lib.path.hasPrefix excludedDir path) excludedDirs) != []; in |
