$NOBIN$ mode now respects the signature key blacklist

This commit is contained in:
ViperMaul 2015-05-09 10:30:58 -07:00
parent 1bd4ca96fd
commit e56089737b

View File

@ -969,7 +969,7 @@ See the make.cfg file for additional build options.
raise raise
print_error("Could not rename built PBO with prefix.") print_error("Could not rename built PBO with prefix.")
# Sign result # Sign result
if key: if (key and not "ace_{}.pbo".format(module) in signature_blacklist):
print("Signing with {}.".format(key)) print("Signing with {}.".format(key))
if pbo_name_prefix: if pbo_name_prefix:
ret = subprocess.call([dssignfile, key, os.path.join(module_root, release_dir, project, "addons", pbo_name_prefix + module + ".pbo")]) ret = subprocess.call([dssignfile, key, os.path.join(module_root, release_dir, project, "addons", pbo_name_prefix + module + ".pbo")])