Skip to content
Snippets Groups Projects
Commit 814b3910 authored by Adrian Schmitz's avatar Adrian Schmitz
Browse files

HOTFIX: Fix some names/references in Installer.py

parent 06349b67
Branches
No related tags found
No related merge requests found
......@@ -206,7 +206,7 @@ def create_keys(priv_key_path, pub_key_path):
# create initial mapping
def create_mapping(priv_key_path, pub_key_path):
create_keys(priv_key_path, pub_key_path)
with open(args.map_path, "w") as text_file:
with open(args.mapping_path, "w") as text_file:
text_file.write('')
......@@ -221,7 +221,7 @@ def install():
os.makedirs(args.install_path, exist_ok=True)
if not args.static_exe:
os.system(f'cp -r core driver.py {args.install_path}')
os.system(f'cp -r settings JSONAccountManager.py {args.install_path}')
os.system(f'cp -r settings AccountManager.py {args.install_path}')
print(f'Installing utility scripts to {args.rt_utility_path}')
os.system(f'cp -r utility/runtime/scripts {args.rt_utility_path}')
#os.chdir(args.install_path)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment