From a747c4e95f6077d93c3c302fbd14e82f723c21d0 Mon Sep 17 00:00:00 2001 From: Pranav K Date: Fri, 18 Mar 2016 14:56:07 -0700 Subject: [PATCH] Don't copy .build dir in Mac and Linux --- makefile.shade | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/makefile.shade b/makefile.shade index 93b1bbe258..26080c4123 100644 --- a/makefile.shade +++ b/makefile.shade @@ -147,11 +147,7 @@ var buildTarget = "compile" blockLogger.StartBlock(blockName); } - if (IsLinux) - { - Exec("cp", " -R -l .build " + Path.Combine(repo, ".build"), ""); - } - else + if (!IsLinux) { Exec("cmd", "/C xcopy /S/Q/I/Y .build " + Path.Combine(repo, ".build"), ""); }