more exclusions
This commit is contained in:
parent
0f517e8085
commit
8024469d79
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in New Issue