From ae52e3608d212038697e6ef53cbe0f209b094cdc Mon Sep 17 00:00:00 2001 From: AdamJedl Date: Fri, 16 Aug 2024 00:30:44 +0200 Subject: [PATCH] fix after update to base branch --- src/commands/system-setup/arch/paru-setup.sh | 2 +- src/commands/system-setup/arch/yay-setup.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/system-setup/arch/paru-setup.sh b/src/commands/system-setup/arch/paru-setup.sh index 2a96f2fc..f0b53ae1 100644 --- a/src/commands/system-setup/arch/paru-setup.sh +++ b/src/commands/system-setup/arch/paru-setup.sh @@ -7,7 +7,7 @@ installDepend() { pacman) if ! command_exists paru; then echo "Installing paru as AUR helper..." - sudo "$PACKAGER" --noconfirm -S base-devel + sudo "$PACKAGER" -S --needed --noconfirm base-devel cd /opt && sudo git clone https://aur.archlinux.org/paru.git && sudo chown -R "$USER": ./paru cd paru && makepkg --noconfirm -si echo "Paru installed" diff --git a/src/commands/system-setup/arch/yay-setup.sh b/src/commands/system-setup/arch/yay-setup.sh index 0197fc86..f29ecc3f 100644 --- a/src/commands/system-setup/arch/yay-setup.sh +++ b/src/commands/system-setup/arch/yay-setup.sh @@ -7,7 +7,7 @@ installDepend() { pacman) if ! command_exists yay; then echo "Installing yay as AUR helper..." - sudo "$PACKAGER" --noconfirm -S base-devel + sudo "$PACKAGER" -S --needed --noconfirm base-devel cd /opt && sudo git clone https://aur.archlinux.org/yay-git.git && sudo chown -R "$USER": ./yay-git cd yay-git && makepkg --noconfirm -si echo "Yay installed"