FIX use yay and not pacman to call sudo

This commit is contained in:
Nathan Dwarshuis 2021-06-12 00:40:37 -04:00
parent 442ddb48eb
commit 1a68c373cd
1 changed files with 2 additions and 2 deletions

View File

@ -22,7 +22,7 @@ mk_makepkg_dir() {
} }
try_update() { try_update() {
if ! pacman -Syy; then if ! yay -Syy; then
echo "Failed to update pacman cache as user $(whoami). Exiting." echo "Failed to update pacman cache as user $(whoami). Exiting."
return 1 return 1
fi fi
@ -30,7 +30,7 @@ try_update() {
call_makepkg() { call_makepkg() {
cd "$makepkg_tmp/$1" || return 1 cd "$makepkg_tmp/$1" || return 1
MAKEFLAGS="-j$(nproc)" makepkg -s -r -i -f --noconfirm makepkg -s -r -i -f --noconfirm
} }
run_install_scripts() { run_install_scripts() {