diff --git a/coreupdate b/coreupdate index 18b8764..baed09d 100755 --- a/coreupdate +++ b/coreupdate @@ -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." diff --git a/utils.sh b/utils.sh index d8dcab0..f85d68c 100755 --- a/utils.sh +++ b/utils.sh @@ -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 }