Return absolute paths in files-in-dir
This commit is contained in:
parent
186cebc46a
commit
41ac17dbe6
|
@ -18,9 +18,8 @@
|
|||
|
||||
(define (files-in-dir file-filter dir)
|
||||
(debug-message "files-in-dir " file-filter " " dir)
|
||||
(with-cwd dir
|
||||
(filter-map file-filter
|
||||
(glob-carefully "*"))))
|
||||
(filter-map file-filter
|
||||
(glob-carefully (string-append dir "*"))))
|
||||
|
||||
(define (complete-path path)
|
||||
(debug-message "complete-path " path ", " (cwd))
|
||||
|
|
Loading…
Reference in New Issue