We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 02c715e commit e0d723fCopy full SHA for e0d723f
1 file changed
archinstall/lib/menu/global_menu.py
@@ -99,6 +99,7 @@ def _setup_selection_menu_options(self):
99
Selector(
100
_('Specify superuser account'),
101
lambda preset: self._create_superuser_account(),
102
+ default={},
103
exec_func=lambda n,v:self._users_resynch(),
104
dependencies_not=['!root-password'],
105
display_func=lambda x: self._display_superusers())
@@ -254,7 +255,8 @@ def _select_harddrives(self, old_harddrives : list) -> list:
254
255
choice = Menu(prompt, ['yes', 'no'], default_option='yes').run()
256
257
if choice == 'no':
- return self._select_harddrives(old_harddrives)
258
+ exit(1)
259
+
260
261
return harddrives
262
0 commit comments