This commit is contained in:
Stephan Raabe
2024-01-25 20:55:32 +01:00
parent 2de300120e
commit a812d7b144
9 changed files with 33 additions and 33 deletions
+3 -3
View File
@@ -5,9 +5,9 @@ echo -e "${GREEN}"
figlet "yay"
echo -e "${NONE}"
if sudo pacman -Qs yay > /dev/null ; then
echo "yay is already installed!"
echo ":: yay is already installed!"
else
echo "yay is not installed. Will be installed now!"
echo ":: yay is not installed. Starting the installation!"
_installPackagesPacman "base-devel"
SCRIPT=$(realpath "$0")
temp_path=$(dirname "$SCRIPT")
@@ -16,6 +16,6 @@ else
cd ~/yay-git
makepkg -si
cd $temp_path
echo "yay has been installed successfully."
echo ":: yay has been installed successfully."
fi
echo ""