From 904edd1b7cae3c012d68d35732f3e3f4a9f45c6b Mon Sep 17 00:00:00 2001 From: ange Date: Sat, 25 May 2024 17:17:07 +0200 Subject: [PATCH] fix: su syntax --- modules/base.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/base.sh b/modules/base.sh index 3ec4a37..0915b17 100644 --- a/modules/base.sh +++ b/modules/base.sh @@ -12,7 +12,7 @@ cp -r ./modules/chroot/ /mnt/ done 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 )