mirror of
https://github.com/alliedmodders/sourcemod.git
synced 2025-12-07 10:28:34 +00:00
NPOTB: Execute ambuild with Python 3.8 pt. 2 (#1353)
This commit is contained in:
parent
f77f708966
commit
39c2dc60e0
@ -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)
|
||||
{
|
||||
|
||||
Loading…
Reference in New Issue
Block a user