Call correct build.sh when building repos.
This commit is contained in:
parent
4e87b0c972
commit
fb6bbee561
|
|
@ -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
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in New Issue