Skip to content

Commit 445881f

Browse files
RReverserkripken
authored andcommitted
Ignore .manifest files in check.py (#2324)
These files are produced alongside .exe when CMake is used on Windows. Subsequently, check.py finds, tries to execute them and fails since they're not excluded.
1 parent d417192 commit 445881f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

check.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@
4848
def run_help_tests():
4949
print('[ checking --help is useful... ]\n')
5050

51-
not_executable_suffix = ['.txt', '.js', '.ilk', '.pdb', '.dll', '.wasm']
51+
not_executable_suffix = ['.txt', '.js', '.ilk', '.pdb', '.dll', '.wasm', '.manifest']
5252
bin_files = [os.path.join(options.binaryen_bin, f) for f in os.listdir(options.binaryen_bin)]
5353
executables = [f for f in bin_files if os.path.isfile(f) and not any(f.endswith(s) for s in not_executable_suffix)]
5454
executables = sorted(executables)

0 commit comments

Comments
 (0)