Fixed: make.py looking for private key in the wrong area

This commit is contained in:
ViperMaul 2015-04-24 13:25:40 -07:00
parent 9fc14de251
commit 8e62a0bf8f

View File

@ -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)