~ chicken-core (chicken-5) 555e005d32b2fa9f9dc67e36b6f2ba0904e7a691
commit 555e005d32b2fa9f9dc67e36b6f2ba0904e7a691
Author: Kooda <kooda@upyum.com>
AuthorDate: Tue Aug 14 12:25:11 2018 +0200
Commit: Evan Hanson <evhan@foldling.org>
CommitDate: Sat Aug 25 05:25:56 2018 +1200
Make `copy-directory-command` copy directories recursively on Windows
Signed-off-by: Evan Hanson <evhan@foldling.org>
diff --git a/egg-compile.scm b/egg-compile.scm
index 2722dce6..e6a3dbaa 100644
--- a/egg-compile.scm
+++ b/egg-compile.scm
@@ -69,7 +69,7 @@
(define (copy-directory-command platform)
(case platform
((unix) "cp -r")
- ((windows) "xcopy /y /i")))
+ ((windows) "xcopy /y /i /e")))
(define (mkdir-command platform)
(case platform
Trap