mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
$NOBIN$ mode now respects the signature key blacklist
This commit is contained in:
parent
1bd4ca96fd
commit
e56089737b
@ -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")])
|
||||||
|
Loading…
Reference in New Issue
Block a user