Send patches - preferably formatted by git format-patch - to patches at archlinux32 dot org.
summaryrefslogtreecommitdiff
path: root/examples/guided.py
diff options
context:
space:
mode:
authoradvaithm <advaith.madhukar@gmail.com>2021-04-05 21:28:20 +0530
committeradvaithm <advaith.madhukar@gmail.com>2021-04-05 21:28:20 +0530
commitb56f7d0515d7dc3b31f2c255c20bc514df9155b1 (patch)
treee2e07d910d403cc034df279ff48d65a957ca6a55 /examples/guided.py
parent9404dbe967beaa060101c4d53758ee308f754740 (diff)
fixed subprocess call
Diffstat (limited to 'examples/guided.py')
-rw-r--r--examples/guided.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/guided.py b/examples/guided.py
index b3c5ca04..032a1f39 100644
--- a/examples/guided.py
+++ b/examples/guided.py
@@ -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")
- subprocess.check_call("arch-chroot /mnt")
+ subprocess.check_call("arch-chroot /mnt",shell=True)
ask_user_questions()
perform_installation_steps()