diff --git a/Installer.py b/Installer.py index ca3b66e61fbc824ef9e9de002efeeb015d86a100..ede1ddaa4395f411ec6e4113ff7d07dac5b67456 100755 --- a/Installer.py +++ b/Installer.py @@ -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)