From 68f5146169afae9dc627473b11221a335f64bd0a Mon Sep 17 00:00:00 2001 From: Subhamoy Biswas Date: Sun, 12 Oct 2025 20:50:05 +0530 Subject: [PATCH] fix: yay command error --- public/linux_installer.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/public/linux_installer.sh b/public/linux_installer.sh index e3c7f05..177897a 100644 --- a/public/linux_installer.sh +++ b/public/linux_installer.sh @@ -101,7 +101,8 @@ elif command -v pacman &> /dev/null; then # Install NeoDLP from AUR using yay echo "📦 Installing NeoDLP from AUR using yay..." - yay -S --noconfirm --rebuild --nodiffmenu --cleanafter neodlp + rm -rf ~/.cache/yay/neodlp + yay -S --noconfirm --answerclean=All --answerdiff=None neodlp if command -v neodlp &> /dev/null; then echo "✅ NeoDLP Installation successful!"