Don't copy .build dir in Mac and Linux

This commit is contained in:
Pranav K 2016-03-18 14:56:07 -07:00
parent ef9d0784fb
commit a747c4e95f
1 changed files with 1 additions and 5 deletions

View File

@ -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"), "");
}