See if a build will run!

This commit is contained in:
David Anderson
2010-04-04 16:32:15 -07:00
parent 1d3f91be43
commit 24bfff9cf1
2 changed files with 16 additions and 3 deletions

View File

@@ -2,7 +2,6 @@
use File::Basename;
our (@LIBRARIES);
my ($myself, $path) = fileparse($0);
chdir($path);
@@ -10,5 +9,18 @@ require 'helpers.pm';
chdir('../../installer/builder');
if ($^O eq "linux") {
system("mono builder.exe");
} else {
system("builder.exe");
}
if ($? != 0)
{
die "Build failed: $!\n";
}
else
{
exit(0);
}