From ffd7915d92f877fcf2caf8d3173af5dc38571fd1 Mon Sep 17 00:00:00 2001 From: David Anderson Date: Thu, 12 Oct 2023 21:40:09 -0700 Subject: [PATCH] Fix bootstrap paths. --- support/buildbot/bootstrap.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/support/buildbot/bootstrap.py b/support/buildbot/bootstrap.py index 9f4b453..a2944b3 100644 --- a/support/buildbot/bootstrap.py +++ b/support/buildbot/bootstrap.py @@ -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), ]