1
0
mirror of https://github.com/alliedmodders/metamod-source.git synced 2025-02-21 14:54:14 +01:00

Fixed startbuild script for OS X 10.7 build slave.

This commit is contained in:
Scott Ehlert 2012-03-21 06:24:39 -05:00
parent d9e86c7802
commit c5531fe64a

View File

@ -11,7 +11,7 @@ require 'helpers.pm';
chdir('../../../OUTPUT'); chdir('../../../OUTPUT');
if ($^O eq "linux" || $^O eq "darwin") { if ($^O eq "linux" || $^O eq "darwin") {
system("python3.1 build.py 2>&1"); system("python3 build.py 2>&1");
} else { } else {
system("C:\\Python31\\python.exe build.py 2>&1"); system("C:\\Python31\\python.exe build.py 2>&1");
} }