Skip to content

Commit 39c2dc6

Browse files
authored
NPOTB: Execute ambuild with Python 3.8 pt. 2 (#1353)
1 parent f77f708 commit 39c2dc6

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

tools/buildbot/startbuild.pl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,11 @@
1616
$ENV{CXX} = $ARGV[0];
1717
}
1818

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

2125
if ($? != 0)
2226
{

0 commit comments

Comments
 (0)