fix: list_dirs should return sorted results like list_files #21
Labels
No labels
coordination/cross-repo
coordination/needed
effort
large
effort
medium
effort
small
meta/duplicate
meta/planning
meta/wontfix
priority
high
priority
low
priority
medium
session
blocker
session
handover
session
next
status
blocked
status
done
status
in-progress
status
review
status
to-go
type
admin
type
bug
type
config
type
deployment
type
docs
type
enhancement
type
feature
type
handover
type
infrastructure
type
installation
type
maintenance
type
migration
type
research
type
security
No milestone
No project
No assignees
1 participant
Notifications
Due date
No due date set.
Dependencies
No dependencies set.
Reference
DAW/daw-lua-common#21
Loading…
Add table
Add a link
Reference in a new issue
No description provided.
Delete branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Problem
M.list_filesreturns a sorted list,M.list_dirsdoes not.Callers expecting consistent behavior across both functions will
get different results.
Fix
Add
table.sort(dirs)toM.list_dirsbefore returning.table.sort(dirs) added to fs/dir.lua's list_dirs, matching list_files. Note: the existing test_fs.lua assertion was masking this bug by sorting the result itself before checking -- removed that redundant sort so the test actually verifies list_dirs' own ordering.