[latex3-commits] [l3svn] 02/02: Revert "l3build: copy recursively"
noreply at latex-project.org
noreply at latex-project.org
Thu Sep 3 15:33:18 CEST 2015
This is an automated email from the git hooks/post-receive script.
joseph pushed a commit to branch master
in repository l3svn.
commit 2f281e16e77d89e83f48b3cbe3a4f78226fcdb20
Author: Joseph Wright <joseph.wright at morningstar2.co.uk>
Date: Thu Sep 3 14:32:34 2015 +0100
Revert "l3build: copy recursively"
This reverts commit 3b95dbf5f603eb8624389c17a4079e4843f7f9dc.
---
l3build/l3build.lua | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/l3build/l3build.lua b/l3build/l3build.lua
index 7eddbf1..891e3f0 100644
--- a/l3build/l3build.lua
+++ b/l3build/l3build.lua
@@ -412,11 +412,11 @@ function cp(glob, source, dest)
local source = source .. "/" .. i
if os_windows then
os.execute(
- "xcopy /y /e /i" .. unix_to_win(source)
- .. " " .. unix_to_win(dest) .. " > nul"
+ "copy /y " .. unix_to_win(source) .. " "
+ .. unix_to_win(dest) .. " > nul"
)
else
- os.execute("cp -rf " .. source .. " " .. dest)
+ os.execute("cp -f " .. source .. " " .. dest)
end
end
end
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the latex3-commits
mailing list