Update: Final mods completed for now.

Updated more detailed messaging

Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
debianpepper 2023-12-13 15:17:58 +09:00
parent 0f488316a1
commit f5634f3dc6
1 changed files with 2 additions and 2 deletions

View File

@ -61,11 +61,11 @@ def check_build_type():
""" Check what build is there and call the correct process function """
for file_name, function_to_call in file_function_mapping.items():
file_path = os.path.join(directory_path, file_name)
print(file_path)
if os.path.exists(file_path):
print(f"You are building a {file_name} ISO type"
function_to_call()
else:
print(f"File {file_name} not found")
print(f"File {file_name} you're not building this ISO type!")
check_build()