Skip to content

Commit

Permalink
Fix startbuild.pl.
Browse files Browse the repository at this point in the history
  • Loading branch information
dvander committed Aug 19, 2020
1 parent 43a3017 commit eec8f95
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion support/buildbot/startbuild.pl
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,11 @@
$ENV{CXX} = $ARGV[0];
}

system("ambuild --no-color 2>&1");
if ($^O !~ /MSWin/) {
system("ambuild --no-color 2>&1");
} else {
system("C:\\Python38\\scripts\\ambuild --no-color 2>&1");
}

if ($? != 0)
{
Expand Down

0 comments on commit eec8f95

Please sign in to comment.