From 08b498e6296b66cc54936f4b44d21d608cc7cb7f Mon Sep 17 00:00:00 2001 From: StiX Date: Wed, 13 May 2015 19:41:48 +0200 Subject: [PATCH] Silenced xcopy on success output --- src/base/os.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/base/os.lua b/src/base/os.lua index 0fb493d4..3d349a1d 100644 --- a/src/base/os.lua +++ b/src/base/os.lua @@ -504,7 +504,7 @@ return "chdir " .. path.translate(v) end, copy = function(v) - return "xcopy /Q /E /Y /I " .. path.translate(v) + return "xcopy /Q /E /Y /I " .. path.translate(v) .. " > nul" end, delete = function(v) return "del " .. path.translate(v)