convert relative paths to fs-objects as well.
This commit is contained in:
parent
f7bb38740e
commit
ca30df1cd7
|
@ -43,4 +43,8 @@
|
|||
(if (file-name-absolute? file-name)
|
||||
(make-fs-object (file-name-nondirectory file-name)
|
||||
(file-name-directory file-name))
|
||||
(error "WRITE-ME file-name->fs-object")))
|
||||
(let ((rest-dirs (file-name-directory file-name)))
|
||||
(make-fs-object (file-name-nondirectory file-name)
|
||||
(string-append (cwd)
|
||||
"/"
|
||||
rest-dirs)))))
|
||||
|
|
Loading…
Reference in New Issue