more exclusions

This commit is contained in:
peterino2 2025-10-12 15:47:02 -07:00
parent 0f517e8085
commit 8024469d79
1 changed files with 3 additions and 1 deletions

View File

@ -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)