Update: Final mods completed for now.
Updated more detailed messaging Signed-off-by: debianpepper <pdpdebdevuan@protonmail.com>
This commit is contained in:
parent
0f488316a1
commit
f5634f3dc6
|
@ -61,11 +61,11 @@ def check_build_type():
|
||||||
""" Check what build is there and call the correct process function """
|
""" Check what build is there and call the correct process function """
|
||||||
for file_name, function_to_call in file_function_mapping.items():
|
for file_name, function_to_call in file_function_mapping.items():
|
||||||
file_path = os.path.join(directory_path, file_name)
|
file_path = os.path.join(directory_path, file_name)
|
||||||
print(file_path)
|
|
||||||
if os.path.exists(file_path):
|
if os.path.exists(file_path):
|
||||||
|
print(f"You are building a {file_name} ISO type"
|
||||||
function_to_call()
|
function_to_call()
|
||||||
else:
|
else:
|
||||||
print(f"File {file_name} not found")
|
print(f"File {file_name} you're not building this ISO type!")
|
||||||
|
|
||||||
|
|
||||||
check_build()
|
check_build()
|
||||||
|
|
Loading…
Reference in New Issue