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

Fix Windows build.

This commit is contained in:
David Anderson 2023-10-12 21:40:47 -07:00
parent ffd7915d92
commit 6fd8c82c57

View File

@ -60,7 +60,7 @@ def main():
with open(os.path.join('support', 'buildbot', 'buildconfig.json'), 'rt') as fp: with open(os.path.join('support', 'buildbot', 'buildconfig.json'), 'rt') as fp:
config_root = json.load(fp) config_root = json.load(fp)
config = config_root[args.config] config = config_root.get(args.config, {})
# Set build properties. # Set build properties.
build_env = os.environ.copy() build_env = os.environ.copy()