update yay build

This commit is contained in:
2026-06-05 08:11:43 -06:00
parent d5ba0c9285
commit 9e0227c012
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ install_packages "${FONTS[@]}"
echo "Updating AUR..."
YAY_FLAGS="--noconfirm --nodiffmenu --nocleanmenu --noeditmenu"
YAY_FLAGS="--noconfirm --answerdiff=None --answeredit=None --answerclean=None"
if ! yay -Sua $YAY_FLAGS 2>/dev/null; then
echo "yay -Sua returned an error. Let's rebuild YAY."

View File

@@ -23,7 +23,7 @@ install_packages() {
if [ ${#to_install[@]} -ne 0 ]; then
echo "Installing: ${to_install[*]}"
yay -S --noconfirm --nodiffmenu --nocleanmenu --noeditmenu "${to_install[@]}"
yay -S --noconfirm --answerdiff=None --answeredit=None --answerclean=None "${to_install[@]}"
fi
}