chore: try using arch-chroot instead of systemd-nspawn

This commit is contained in:
Rudra B.S. 2023-11-24 09:06:31 +05:30
parent bcec9dcef9
commit c2004b7422

View file

@ -79,7 +79,7 @@ def exec(*cmd, **kwargs):
def exec_chroot(*cmd, **kwargs):
return exec('systemd-nspawn', '-D', '/.new_rootfs', '--', *cmd, **kwargs)
return exec('arch-chroot', '/.new_rootfs', *cmd, **kwargs)
fg = colors.fg()