Add /I to xcopy token replacement to avoid "file or directory?" prompts

This commit is contained in:
Jason Perkins 2014-12-01 16:49:52 -05:00
parent fbdceb7f0a
commit 59568aeeb1

View File

@ -446,7 +446,7 @@
copy = function(v) return "cp -r " .. v end,
},
windows = {
copy = function(v) return "xcopy /Q /E /Y " .. path.translate(v) end,
copy = function(v) return "xcopy /Q /E /Y /I " .. path.translate(v) end,
}
}