Files
lnx-arch/scripts/99_yay.sh

20 lines
291 B
Bash
Raw Normal View History

2024-05-01 16:14:59 -05:00
#!/usr/bin/env bash
# klevstul
2024-05-01 16:18:51 -05:00
# https://itsfoss.com/install-yay-arch-linux/
2024-05-01 16:14:59 -05:00
echo "<< 99_yay.sh >>"
if [ "$EUID" -ne 0 ]
then echo "error: run as 'root'"
exit
fi
2024-05-01 16:20:31 -05:00
rm -rf /tmp/yay
2024-05-01 16:14:59 -05:00
cd /tmp
git clone https://aur.archlinux.org/yay.git
2024-05-01 16:18:51 -05:00
cd /tmp/yay
2024-05-01 16:21:03 -05:00
su poq makepkg -si
su poq yay --version