From 8024469d7911c97b2f5e65336739942cc0965e70 Mon Sep 17 00:00:00 2001 From: peterino2 Date: Sun, 12 Oct 2025 15:47:02 -0700 Subject: [PATCH] more exclusions --- tools/scripts/automation.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/tools/scripts/automation.py b/tools/scripts/automation.py index bb0383f..ea8c0dd 100644 --- a/tools/scripts/automation.py +++ b/tools/scripts/automation.py @@ -67,7 +67,7 @@ def buildAndPackage(branch, target, deploy): 'newProject.exe', 'newProject.pdb', 'toolbox.exe', - 'toolbox.pdb' + 'toolbox.pdb', 'headless', 'newProject', 'toolbox' @@ -76,6 +76,8 @@ def buildAndPackage(branch, target, deploy): for f in os.listdir(f'zig-out-{tag}/bin'): if f not in excludeList: shutil.copy(os.path.join(f'zig-out-{tag}/bin', f), f"staging/sampleGame/{tag}/") + else: + print("skipping ", f) if os.path.exists(f'zig-out-{tag}/modules'): os.makedirs('staging/sampleGame/zig-out/modules', exist_ok=True)