diff --git a/bypy/windows/__main__.py b/bypy/windows/__main__.py index 73e2e0fc9c..fc62b117b6 100644 --- a/bypy/windows/__main__.py +++ b/bypy/windows/__main__.py @@ -548,9 +548,9 @@ def copy_crt_and_d3d(env): def sign_executables(env): files_to_sign = [] for path in walk(env.base): - if path.lower().endswith('.exe'): + if path.lower().endswith('.exe') or path.lower().endswith('.dll'): files_to_sign.append(path) - printf('Signing {} exe files'.format(len(files_to_sign))) + printf('Signing {} exe/dll files'.format(len(files_to_sign))) sign_files(env, files_to_sign)