13 lines
245 B
Cheetah
13 lines
245 B
Cheetah
|
{{ if (and (eq .chezmoi.osRelease.id "arch") (not lookPath "yay")) -}}
|
||
|
#!/usr/bin/env bash
|
||
|
|
||
|
sudo pacman -S --needed git base-devel
|
||
|
git clone https://aur.archlinux.org/yay-bin.git
|
||
|
cd yay-bin
|
||
|
makepkg -si
|
||
|
cd ..
|
||
|
rm -rf yay-bin
|
||
|
|
||
|
yay -Syu
|
||
|
{{- end -}}
|