From 9353849e1637d3019325a081e340085c67ed0c7d Mon Sep 17 00:00:00 2001 From: nyx Date: Thu, 31 Oct 2024 14:40:07 -0400 Subject: [PATCH] use bin for faster installation (#748) Co-authored-by: nyx --- 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}"