Skip to content

Commit c060859

Browse files
committed
Skip vulkan shaders gen
1 parent ce38291 commit c060859

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

scripts/build/common.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -66,7 +66,7 @@ def get_release_files(build_dir):
6666
if os.path.exists(bin_dir):
6767
for root, dirs, filenames in os.walk(bin_dir):
6868
for filename in filenames:
69-
if INTERMEDIATE_LIB_PATTERN.match(filename):
69+
if INTERMEDIATE_LIB_PATTERN.match(filename) or "vulkan-shaders-gen" in filename:
7070
continue
7171
files.append(os.path.join(root, filename))
7272
# Collect shared libraries in lib (.so, .dylib, .dll)

0 commit comments

Comments
 (0)