7empest
This commit is contained in:
parent
483d2ca4a7
commit
b714cc3b51
1 changed files with 15 additions and 8 deletions
|
@ -2,16 +2,23 @@
|
||||||
|
|
||||||
cd
|
cd
|
||||||
|
|
||||||
# Yay
|
|
||||||
if test -d yay; then
|
if [ -x $(command -v yay) ]; then
|
||||||
rm -rf yay
|
$USER_HAS_YAY = true
|
||||||
|
else
|
||||||
|
$USER_HAS_YAY = false
|
||||||
fi
|
fi
|
||||||
|
|
||||||
git clone https://aur.archlinux.org/yay.git &&
|
if [ "$USER_HAS_YAY" = false ]; then
|
||||||
cd yay &&
|
if test -d yay; then
|
||||||
makepkg -si --noconfirm &&
|
rm -rf yay
|
||||||
cd &&
|
fi
|
||||||
rm -rf yay &&
|
git clone https://aur.archlinux.org/yay.git &&
|
||||||
|
cd yay &&
|
||||||
|
makepkg -si --noconfirm &&
|
||||||
|
cd &&
|
||||||
|
rm -rf yay
|
||||||
|
fi
|
||||||
|
|
||||||
# Base/Shell
|
# Base/Shell
|
||||||
yay -S --needed --noconfirm \
|
yay -S --needed --noconfirm \
|
||||||
|
|
Loading…
Add table
Reference in a new issue