12 lines
253 B
Bash
Executable file
12 lines
253 B
Bash
Executable file
#!/usr/bin/env bash
|
|
|
|
REPOSITORY_PATH="/tmp/provisioning"
|
|
pacman -S --needed git base-devel
|
|
mkdir -p "$REPOSITORY_PATH"
|
|
rm -rf "$REPOSITORY_PATH/yay"
|
|
git clone https://aur.archlinux.org/yay.git
|
|
cd yay
|
|
makepkg -si
|
|
yay -S yay
|
|
rm -rf "$REPOSITORY_PATH/yay"
|