patch for windows
This commit is contained in:
parent
e72671fa77
commit
bc902e72da
|
@ -5,7 +5,8 @@
|
||||||
racket/path
|
racket/path
|
||||||
racket/contract
|
racket/contract
|
||||||
racket/list
|
racket/list
|
||||||
racket/runtime-path)
|
racket/runtime-path
|
||||||
|
racket/string)
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
@ -36,22 +37,29 @@
|
||||||
[(within-whalesong-path? a-path)
|
[(within-whalesong-path? a-path)
|
||||||
(string->symbol
|
(string->symbol
|
||||||
(string-append "whalesong/"
|
(string-append "whalesong/"
|
||||||
(path->string
|
(my-path->string
|
||||||
(find-relative-path normal-whalesong-path a-path))))]
|
(find-relative-path normal-whalesong-path a-path))))]
|
||||||
[(within-collects? a-path)
|
[(within-collects? a-path)
|
||||||
(string->symbol
|
(string->symbol
|
||||||
(string-append "collects/"
|
(string-append "collects/"
|
||||||
(path->string
|
(my-path->string
|
||||||
(find-relative-path collects-path a-path))))]
|
(find-relative-path collects-path a-path))))]
|
||||||
[(within-root-path? a-path)
|
[(within-root-path? a-path)
|
||||||
(string->symbol
|
(string->symbol
|
||||||
(string-append "root/"
|
(string-append "root/"
|
||||||
(path->string
|
(my-path->string
|
||||||
(find-relative-path (current-root-path) a-path))))]
|
(find-relative-path (current-root-path) a-path))))]
|
||||||
[else
|
[else
|
||||||
#f])))
|
#f])))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
;; Like path->string, but I force the path separator to be '/' rather than the platform
|
||||||
|
;; specific one.
|
||||||
|
(define (my-path->string a-path)
|
||||||
|
(string-join (map path->string (explode-path a-path)) "/"))
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
(define (within-root-path? a-path)
|
(define (within-root-path? a-path)
|
||||||
|
|
Loading…
Reference in New Issue
Block a user