fixed absolute paths passed to raco
This commit is contained in:
parent
a4db4a2412
commit
94defd5fc2
5
raco.rkt
5
raco.rkt
|
@ -42,7 +42,10 @@
|
|||
(for/list ([f files])
|
||||
(if (not (directory-exists? f))
|
||||
f
|
||||
(parameterize ([current-directory (build-path (current-directory) f)])
|
||||
(parameterize ([current-directory
|
||||
(if (absolute-path? f)
|
||||
f
|
||||
(build-path (current-directory) f))])
|
||||
(expand-directory))))))
|
||||
|
||||
(define (expand-directory)
|
||||
|
|
Loading…
Reference in New Issue
Block a user