Copy .build dir in Linux

This commit is contained in:
Pranav K 2016-03-23 14:37:59 -07:00
parent 74787d2ce6
commit 56f51b2525
1 changed files with 4 additions and 0 deletions

View File

@ -164,6 +164,10 @@ var buildTarget = "compile"
{
Exec("cmd", "/C xcopy /S/Q/I/Y .build " + Path.Combine(repo, ".build"), "");
}
else
{
CopyFolder(".build", Path.Combine(repo, ".build"), true);
}
Exec(CreateBuildWithFlowId(repo), buildTarget, repo);
var repoArtifacts = Path.Combine(repo, "artifacts");