From eec8f956e0b13ad47fced91d470c5fc19b47325e Mon Sep 17 00:00:00 2001 From: David Anderson Date: Wed, 19 Aug 2020 14:59:39 -0700 Subject: [PATCH] Fix startbuild.pl. --- support/buildbot/startbuild.pl | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/support/buildbot/startbuild.pl b/support/buildbot/startbuild.pl index 712ae63..3714b70 100755 --- a/support/buildbot/startbuild.pl +++ b/support/buildbot/startbuild.pl @@ -16,7 +16,11 @@ if ($argn > 0) { $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) {