diff options
| author | Blake Romero <blake@blkrom.com> | 2023-05-24 22:16:15 +0100 |
|---|---|---|
| committer | Blake Romero <blake@blkrom.com> | 2023-05-24 22:16:15 +0100 |
| commit | b12f7465bcaff96ef0d67281af8cdc4f22b67366 (patch) | |
| tree | b2617effd17ebadc805d5dd4d6f535d8066ed6cd | |
| parent | 7deea41638cbe6da413e701600603a2935590b1f (diff) | |
Fix missing command for runuser
| -rwxr-xr-x | install-artix.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/install-artix.sh b/install-artix.sh index 587126a..33aaff4 100755 --- a/install-artix.sh +++ b/install-artix.sh @@ -303,7 +303,7 @@ if [[ $enable_aur == true ]]; then # download package rm -rf /mnt/home/${user}/trizen &> /dev/null clone="git clone https://aur.archlinux.org/trizen" - artix-chroot /mnt bash -c "runuser -l ${user} \"${clone}\"" + artix-chroot /mnt bash -c "runuser -l ${user} -c \"${clone}\"" # build package build="cd /home/${user}/trizen && makepkg --noconfirm" |
