Don't copy .build dir in Mac and Linux
This commit is contained in:
parent
ef9d0784fb
commit
a747c4e95f
|
|
@ -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"), "");
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue