clean dir input

This commit is contained in:
Lilian Jónsdóttir 2024-07-15 16:31:58 -07:00
parent dfed84eb74
commit 536fc9e925
2 changed files with 5 additions and 1 deletions

View file

@ -64,6 +64,7 @@ func NewDisk(path string) (DiskFile, error) {
}
func FindDisk(dir string, recursive bool, f *filter.Filter) (files Files, err error) {
dir = filepath.Clean(dir)
if dir == "." || dir == "" {
var d string
if d, err = os.Getwd(); err != nil {