From ca92c69f2695cde4fe0bf8b6849c19114ab35073 Mon Sep 17 00:00:00 2001 From: Gaurav Bankar Date: Thu, 8 Aug 2024 12:28:38 +0530 Subject: [PATCH] fixed yay installation --- scripts/installer/prerequisites.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/scripts/installer/prerequisites.sh b/scripts/installer/prerequisites.sh index 2617001..4e18d06 100755 --- a/scripts/installer/prerequisites.sh +++ b/scripts/installer/prerequisites.sh @@ -11,7 +11,8 @@ print_info "\nStarting prerequisites setup..." run_command "pacman -Syyu --noconfirm" "Update package database and upgrade packages (Recommended)" "yes" # no -run_command "pacman -S --needed git base-devel && git clone https://aur.archlinux.org/yay.git && cd yay && makepkg -si && cd.. # builds with makepkg" "Install YAY (Must)/Breaks the script" "yes" # no +run_command "pacman -S --noconfirm --needed git base-devel && git clone https://aur.archlinux.org/yay.git && cd yay && makepkg -si && cd.. # builds with makepkg" "Install YAY (Must)/Breaks the script" "no" # no +run_command "git clone https://aur.archlinux.org/yay.git && cd yay && makepkg -si && cd.. # builds with makepkg" "Build YAY (Must)/Breaks the script" "no" "no" # no run_command "pacman -S --noconfirm pipewire wireplumber" "Configuring audio (Recommended)" "yes"