This repository has been archived on 2024-03-28. You can view files and clone it, but cannot push or open issues or pull requests.
dotfiles/env/arch-linux/provision.d/10-install-yay.bash

12 lines
300 B
Bash
Executable File

#!/usr/bin/env bash
REPOSITORY_PATH="/tmp/provisioning"
sudo pacman -S --needed git base-devel
mkdir -p "$REPOSITORY_PATH"
rm -rf "$REPOSITORY_PATH/yay"
git clone https://aur.archlinux.org/yay.git "$REPOSITORY_PATH/yay"
cd "$REPOSITORY_PATH/yay"
makepkg -si
yay -S yay
rm -rf "$REPOSITORY_PATH/yay"