Call correct build.sh when building repos.

This commit is contained in:
Cesar Blum Silveira 2015-10-16 11:00:52 -07:00
parent 4e87b0c972
commit fb6bbee561
1 changed files with 2 additions and 2 deletions

View File

@ -360,7 +360,7 @@ var buildTarget = "compile"
if (IsMono)
{
Exec("build.sh", buildTarget, repo);
Exec(Path.Combine(repo, "build.sh"), buildTarget, repo);
}
else
{
@ -419,7 +419,7 @@ var buildTarget = "compile"
{
if (IsMono)
{
Exec("build.sh", "install", repo);
Exec(Path.Combine(repo, "build.sh"), "install", repo);
}
else
{