From 0ff066c813957d570f6561d59df6b3cf931536a8 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Wed, 13 Nov 2019 21:59:20 +0000 Subject: Added /deployments/ twice. Silly me. --- archinstall.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'archinstall.py') diff --git a/archinstall.py b/archinstall.py index ae9e9c9d..b6fd9515 100644 --- a/archinstall.py +++ b/archinstall.py @@ -425,8 +425,8 @@ def get_application_instructions(target): print('[N] No instructions found for: {}'.format(target)) print('[N] Trying local instructions under ./deployments/applications') local_path = './deployments/applications' if os.path.isfile('./archinstall.py') else './archinstall/deployments/applications' # Dangerous assumption - if os.path.isfile(f'{local_path}/deployments/applications/{target}.json'): - with open(f'{local_path}/deployments/applications/{target}.json', 'r') as fh: + if os.path.isfile(f'{local_path}/{target}.json'): + with open(f'{local_path}/{target}.json', 'r') as fh: instructions = fh.read() print('[N] Found local application instructions for: {}'.format(target)) @@ -451,8 +451,8 @@ def get_instructions(target): print('[N] No instructions found called: {}'.format(target)) print('[N] Trying local instructions under ./deployments') local_path = './deployments' if os.path.isfile('./archinstall.py') else './archinstall/deployments' # Dangerous assumption - if os.path.isfile(f'{local_path}/deployments/{target}.json'): - with open(f'{local_path}/deployments/{target}.json', 'r') as fh: + if os.path.isfile(f'{local_path}/{target}.json'): + with open(f'{local_path}/{target}.json', 'r') as fh: instructions = fh.read() print('[N] Found local instructions called: {}'.format(target)) -- cgit v1.2.3-70-g09d2