From 02560a00a3a6a81dc0d569f71d5542d769fd23d3 Mon Sep 17 00:00:00 2001 From: Stephan Raabe Date: Tue, 15 Aug 2023 10:02:31 +0200 Subject: [PATCH] Updates --- 1-install.sh | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/1-install.sh b/1-install.sh index 6e5937d..7f2dd06 100755 --- a/1-install.sh +++ b/1-install.sh @@ -30,9 +30,12 @@ echo "" # Check if yay is installed # ------------------------------------------------------ if sudo pacman -Qs yay > /dev/null ; then - echo "yay is installed. You can proceed with the installation" + echo "yay is installed. You can proceed with the installation" else - echo "yay is not installed. Please install yay before proceed with the installation" + echo "yay is not installed. Will be installed now!" + git clone https://aur.archlinux.org/yay-git.git ~/yay-git + cd ~/yay-git + makepkg -si exit fi