dotfiles/.chezmoiscripts/run_once_before_00-aur.sh.tmpl

12 lines
247 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 -}}