From 18c811ac967110d9371cc5dcdcd44382b25b0494 Mon Sep 17 00:00:00 2001 From: Anton Hvornum Date: Sun, 8 Nov 2020 23:12:49 +0000 Subject: Added some more debugging --- archinstall/lib/profiles.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) (limited to 'archinstall') diff --git a/archinstall/lib/profiles.py b/archinstall/lib/profiles.py index 015d41b7..f20726d2 100644 --- a/archinstall/lib/profiles.py +++ b/archinstall/lib/profiles.py @@ -65,11 +65,13 @@ def find_installation_script(profile): with open(profile, 'r') as file: return Script(file.read(), filename=os.path.basename(profile)) except FileNotFoundError: - return ProfileNotFound(f"File {profile} does not exist") + cwd = os.path.abspath(f'{os.path.dirname(__file__)}') + examples = f"{cwd}/examples" + raise ProfileNotFound(f"File {profile} does not exist in {examples}") elif parsed_url.scheme in ('https', 'http'): return Script(urllib.request.urlopen(profile).read().decode('utf-8'), filename=os.path.basename(profile)) else: - return ProfileNotFound(f"Cannot handle scheme {parsed_url.scheme}") + raise ProfileNotFound(f"Cannot handle scheme {parsed_url.scheme}") class Imported(): -- cgit v1.2.3-54-g00ecf