fix: su syntax

This commit is contained in:
ange 2024-05-25 17:17:07 +02:00
parent 0921ba2a4c
commit 904edd1b7c
Signed by: ange
GPG Key ID: 9E0C4157BB7BEB1D

View File

@ -12,7 +12,7 @@ cp -r ./modules/chroot/ /mnt/
done done
for i in ./chroot/user/*.sh; do for i in ./chroot/user/*.sh; do
arch-chroot /mnt/ su "$username" -c bash -x "/$i" arch-chroot /mnt/ su "$username" -c "bash -x '/$i'"
done done
) )