more exclusions
This commit is contained in:
parent
0f517e8085
commit
8024469d79
|
|
@ -67,7 +67,7 @@ def buildAndPackage(branch, target, deploy):
|
||||||
'newProject.exe',
|
'newProject.exe',
|
||||||
'newProject.pdb',
|
'newProject.pdb',
|
||||||
'toolbox.exe',
|
'toolbox.exe',
|
||||||
'toolbox.pdb'
|
'toolbox.pdb',
|
||||||
'headless',
|
'headless',
|
||||||
'newProject',
|
'newProject',
|
||||||
'toolbox'
|
'toolbox'
|
||||||
|
|
@ -76,6 +76,8 @@ def buildAndPackage(branch, target, deploy):
|
||||||
for f in os.listdir(f'zig-out-{tag}/bin'):
|
for f in os.listdir(f'zig-out-{tag}/bin'):
|
||||||
if f not in excludeList:
|
if f not in excludeList:
|
||||||
shutil.copy(os.path.join(f'zig-out-{tag}/bin', f), f"staging/sampleGame/{tag}/")
|
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'):
|
if os.path.exists(f'zig-out-{tag}/modules'):
|
||||||
os.makedirs('staging/sampleGame/zig-out/modules', exist_ok=True)
|
os.makedirs('staging/sampleGame/zig-out/modules', exist_ok=True)
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue