>From 3f095313fc740c4f396869680dbd7f5b2a06f1f1 Mon Sep 17 00:00:00 2001 From: Kooda Date: Tue, 14 Aug 2018 12:25:11 +0200 Subject: [PATCH 2/2] Make `copy-directory-command` copy directories recursively on Windows --- egg-compile.scm | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/egg-compile.scm b/egg-compile.scm index 4b6c3cea..536db1e4 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 -- 2.18.0