From f43fcd667051e9cd506759ba5f0ee2eff1e549e1 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Sun, 4 Apr 2010 17:02:16 -0700 Subject: [PATCH] Invoke builder.exe correctly. --- support/buildbot/startbuild.pl | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/support/buildbot/startbuild.pl b/support/buildbot/startbuild.pl index e00faec9..94277db2 100755 --- a/support/buildbot/startbuild.pl +++ b/support/buildbot/startbuild.pl @@ -11,10 +11,11 @@ chdir('../../installer/builder'); my $output; if ($^O eq "linux") { - $output = `mono builder.exe`; + $output = `mono builder.exe directions.info`; } else { - $output = `builder.exe`; + $output = `builder.exe directions.info`; } +print $output . "\n"; if ($output =~ /Build failed/) { die "Build failed!\n";