use subprocess to launch the shell

This commit is contained in:
advaithm 2021-04-05 21:03:56 +05:30
parent 463d1b5fd3
commit 947700a605
1 changed files with 1 additions and 1 deletions

View File

@ -346,7 +346,7 @@ def perform_installation(device, boot_partition, language, mirrors):
installation.user_set_pw('root', root_pw)
if archinstall.arguments.get('profile', None) == "i3-wm" or archinstall.arguments.get('profile', None) == "i3-gaps":
print("the installation of i3/i3-gaps does not conatain any configuerations for the wm. in this shell you should add your configuerations")
installation.arch_chroot("bash")
subprocess.check_call("arch-chroot /mnt")
ask_user_questions()
perform_installation_steps()