We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ce38291 commit c060859Copy full SHA for c060859
1 file changed
scripts/build/common.py
@@ -66,7 +66,7 @@ def get_release_files(build_dir):
66
if os.path.exists(bin_dir):
67
for root, dirs, filenames in os.walk(bin_dir):
68
for filename in filenames:
69
- if INTERMEDIATE_LIB_PATTERN.match(filename):
+ if INTERMEDIATE_LIB_PATTERN.match(filename) or "vulkan-shaders-gen" in filename:
70
continue
71
files.append(os.path.join(root, filename))
72
# Collect shared libraries in lib (.so, .dylib, .dll)
0 commit comments