mirror of
https://github.com/janet-lang/janet
synced 2025-04-06 15:26:55 +00:00
Replace forward slash in xcopy commands.
xcopy doesn't handle them in paths.
This commit is contained in:
parent
617338457d
commit
5caa0371c4
4
jpm
4
jpm
@ -141,7 +141,9 @@
|
||||
(if is-win
|
||||
(let [end (last (peg/match path-splitter src))
|
||||
isdir (= (os/stat src :mode) :directory)]
|
||||
(shell "C:\\Windows\\System32\\xcopy.exe" src (if isdir (string dest "\\" end) dest) "/y" "/s" "/e" "/i"))
|
||||
(shell "C:\\Windows\\System32\\xcopy.exe"
|
||||
(string/replace "/" "\\" src) (string/replace "/" "\\" (if isdir (string dest "\\" end) dest))
|
||||
"/y" "/s" "/e" "/i"))
|
||||
(shell "cp" "-rf" src dest)))
|
||||
|
||||
(defn mkdir
|
||||
|
Loading…
x
Reference in New Issue
Block a user