Updated the loop logic for mirrors
It wouldn't break out of the loop since the `valid_mirror` variable was never changed.
This commit is contained in:
parent
99fb1304ea
commit
5b3a122141
|
|
@ -23,12 +23,12 @@ def ask_user_questions():
|
||||||
|
|
||||||
# Set which region to download packages from during the installation
|
# Set which region to download packages from during the installation
|
||||||
if not archinstall.arguments.get('mirror-region', None):
|
if not archinstall.arguments.get('mirror-region', None):
|
||||||
valid_mirror = False
|
while True:
|
||||||
while valid_mirror == False:
|
|
||||||
try:
|
try:
|
||||||
archinstall.arguments['mirror-region'] = archinstall.select_mirror_regions(archinstall.list_mirrors())
|
archinstall.arguments['mirror-region'] = archinstall.select_mirror_regions(archinstall.list_mirrors())
|
||||||
|
break
|
||||||
except archinstall.RequirementError as e:
|
except archinstall.RequirementError as e:
|
||||||
archinstall.log(e, fg="yellow")
|
archinstall.log(e, fg="red")
|
||||||
else:
|
else:
|
||||||
selected_region = archinstall.arguments['mirror-region']
|
selected_region = archinstall.arguments['mirror-region']
|
||||||
archinstall.arguments['mirror-region'] = {selected_region : archinstall.list_mirrors()[selected_region]}
|
archinstall.arguments['mirror-region'] = {selected_region : archinstall.list_mirrors()[selected_region]}
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue