2010-04-04 23:07:37 +00:00
|
|
|
#!/usr/bin/perl
|
|
|
|
|
|
|
|
use File::Basename;
|
|
|
|
|
|
|
|
my ($myself, $path) = fileparse($0);
|
|
|
|
chdir($path);
|
|
|
|
|
|
|
|
require 'helpers.pm';
|
|
|
|
|
2010-04-04 23:24:42 +00:00
|
|
|
chdir('../../installer/builder');
|
2010-04-04 23:07:37 +00:00
|
|
|
|
2010-04-04 23:32:15 +00:00
|
|
|
if ($^O eq "linux") {
|
|
|
|
system("mono builder.exe");
|
|
|
|
} else {
|
|
|
|
system("builder.exe");
|
|
|
|
}
|
2010-04-04 23:07:37 +00:00
|
|
|
|
2010-04-04 23:32:15 +00:00
|
|
|
if ($? != 0)
|
|
|
|
{
|
|
|
|
die "Build failed: $!\n";
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
exit(0);
|
|
|
|
}
|
2010-04-04 23:07:37 +00:00
|
|
|
|