Skip to content

Commit

Permalink
NPOTB: Execute ambuild with Python 3.8 pt. 2 (#1353)
Browse files Browse the repository at this point in the history
  • Loading branch information
Headline committed Sep 25, 2020
1 parent f77f708 commit 39c2dc6
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion tools/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 39c2dc6

Please sign in to comment.