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

Fix bootstrap paths.

This commit is contained in:
David Anderson 2023-10-12 21:40:09 -07:00
parent 86e8358055
commit ffd7915d92

View File

@ -11,6 +11,7 @@ import subprocess
def Chdir(path):
old = os.getcwd()
os.chdir(path)
print('> cd {} # {}'.format(path, os.getcwd()))
try:
yield
finally:
@ -87,6 +88,7 @@ def main():
'--symbol-files',
'--targets=x86,x86_64',
'--sdks=all',
'--out=OUTPUT',
'--hl2sdk-root={}'.format(args.hl2sdk_root),
]