mirror of
https://github.com/janet-lang/janet
synced 2025-01-11 08:00:27 +00:00
Fix jpm mendoza install on windows.
This commit is contained in:
parent
c9521e093e
commit
86d21816b6
@ -223,7 +223,8 @@
|
|||||||
[src dest]
|
[src dest]
|
||||||
(print "copying " src " to " dest "...")
|
(print "copying " src " to " dest "...")
|
||||||
(if is-win
|
(if is-win
|
||||||
(shell "xcopy" src dest "/y" "/s" "/e")
|
(let [end (last (peg/match path-splitter src))]
|
||||||
|
(shell "xcopy" src (string dest "\\" end) "/y" "/s" "/e"))
|
||||||
(shell "cp" "-rf" src dest)))
|
(shell "cp" "-rf" src dest)))
|
||||||
|
|
||||||
#
|
#
|
||||||
|
Loading…
Reference in New Issue
Block a user