From a3bdb8950432bd1f85f831ad208dae5e870e7762 Mon Sep 17 00:00:00 2001 From: pika Date: Thu, 10 Jul 2025 09:11:48 +0200 Subject: [PATCH] fixed --noconfirm for archbased installations --- .bashrc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.bashrc b/.bashrc index ca5ab13..ab039e2 100644 --- a/.bashrc +++ b/.bashrc @@ -158,11 +158,11 @@ setup-pkg() { pacman) install() { if command-exists paru; then - paru -S --no-confirm --color=always "$@" + paru -S --noconfirm --color=always "$@" elif command-exists yay; then - yay -S --no-confirm --color=always "$@" + yay -S --noconfirm --color=always "$@" else - $_sudo pacman -S --no-confirm --color=always "$@" + $_sudo pacman -S --noconfirm --color=always "$@" fi }