Added error handling to guided.py when not selecting a profile to install.
This commit is contained in:
parent
dafe304b00
commit
4b1f22bf91
|
|
@ -115,7 +115,7 @@ while 1:
|
||||||
try:
|
try:
|
||||||
if packages and archinstall.validate_package_list(packages):
|
if packages and archinstall.validate_package_list(packages):
|
||||||
break
|
break
|
||||||
except RequirementError as e:
|
except archinstall.RequirementError as e:
|
||||||
print(e)
|
print(e)
|
||||||
|
|
||||||
# TODO: Print a summary here of all the options chosen.
|
# TODO: Print a summary here of all the options chosen.
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue