Files
dotfiles/scripts/install-yay.sh
2024-01-03 10:27:26 +08:00

10 lines
200 B
Bash

#!/bin/bash
cd /home/"$USER"/ || exit
git clone https://aur.archlinux.org/yay.git
cd /home/"$USER"/yay || exit
makepkg -si --noconfirm
cd /home/"$USER"/ || exit
rm -rf yay
echo "install yay success"