From fb6bbee56183c4c3f2a21d6717c4ae59732b33a4 Mon Sep 17 00:00:00 2001 From: Cesar Blum Silveira Date: Fri, 16 Oct 2015 11:00:52 -0700 Subject: [PATCH] Call correct build.sh when building repos. --- makefile.shade | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile.shade b/makefile.shade index b7939ce16e..b33078bc28 100644 --- a/makefile.shade +++ b/makefile.shade @@ -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 {