mirror of
https://github.com/acemod/ACE3.git
synced 2024-08-30 18:23:18 +00:00
Fixed: make.py looking for private key in the wrong area
This commit is contained in:
parent
9fc14de251
commit
8e62a0bf8f
@ -721,7 +721,7 @@ See the make.cfg file for additional build options.
|
||||
|
||||
# Make the key specified from command line if necessary.
|
||||
if new_key:
|
||||
if not os.path.isfile(os.path.join(module_root, key_name + ".biprivatekey")):
|
||||
if not os.path.isfile(os.path.join(private_key_path, key_name + ".biprivatekey")):
|
||||
print_yellow("\nRequested key does not exist.")
|
||||
try:
|
||||
os.makedirs(private_key_path)
|
||||
|
Loading…
Reference in New Issue
Block a user