This commit is contained in:
voidlizard 2025-02-02 20:35:28 +03:00
parent 0f6fc6223c
commit f7f404fd94
1 changed files with 3 additions and 3 deletions

View File

@ -85,9 +85,9 @@ home :: MonadIO m => m FilePath
home = liftIO D.getHomeDirectory
data DirEntry =
EntryFile { entryPath :: FilePath }
| EntryDir { entryPath :: FilePath }
| EntryOther { entryPath :: FilePath }
EntryFile { dirEntryPath :: FilePath }
| EntryDir { dirEntryPath :: FilePath }
| EntryOther { dirEntryPath :: FilePath }
dirFiles :: MonadIO m => FilePath -> m [FilePath]
dirFiles d = S.toList_ $ do