From 17e25101dc3396696e1b5da10a2a6e83650484c8 Mon Sep 17 00:00:00 2001 From: nyx Date: Thu, 3 Oct 2024 07:57:17 -0400 Subject: [PATCH] use bin for faster installation --- core/tabs/system-setup/arch/paru-setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/tabs/system-setup/arch/paru-setup.sh b/core/tabs/system-setup/arch/paru-setup.sh index fba445ef..c08e5d8d 100755 --- a/core/tabs/system-setup/arch/paru-setup.sh +++ b/core/tabs/system-setup/arch/paru-setup.sh @@ -8,8 +8,8 @@ installDepend() { if ! command_exists paru; then printf "%b\n" "${YELLOW}Installing paru as AUR helper...${RC}" "$ESCALATION_TOOL" "$PACKAGER" -S --needed --noconfirm base-devel git - cd /opt && "$ESCALATION_TOOL" git clone https://aur.archlinux.org/paru.git && "$ESCALATION_TOOL" chown -R "$USER": ./paru - cd paru && makepkg --noconfirm -si + cd /opt && "$ESCALATION_TOOL" git clone https://aur.archlinux.org/paru-bin.git && "$ESCALATION_TOOL" chown -R "$USER": ./paru-bin + cd paru-bin && makepkg --noconfirm -si printf "%b\n" "${GREEN}Paru installed${RC}" else printf "%b\n" "${GREEN}Paru already installed${RC}"