amxmodx/support/buildbot/startbuild.pl
2010-04-04 17:11:11 -07:00

26 lines
390 B
Perl
Executable File

#!/usr/bin/perl
use File::Basename;
my ($myself, $path) = fileparse($0);
chdir($path);
require 'helpers.pm';
chdir('../../installer/builder');
my $output;
if ($^O eq "linux") {
$output = `mono builder.exe directions.info`;
} else {
$output = `builder.exe directions.info`;
}
print $output . "\n";
if (!($output =~ /Build succeeded/)) {
die "Build failed!\n";
} else {
exit(0);
}