From 8c55c9a36881714988d4bc7d4293d281c034ef9b Mon Sep 17 00:00:00 2001 From: Xeonacid Date: Mon, 14 Nov 2022 22:20:47 +0800 Subject: [PATCH] Use --noconfirm for pacman (#1376) Act same as -y for apt. Don't ask for confirmation. --- setup.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/setup.sh b/setup.sh index d16472a7d..aa0b614b2 100755 --- a/setup.sh +++ b/setup.sh @@ -61,8 +61,8 @@ install_emerge() { } install_pacman() { - sudo pacman -Syy || true - sudo pacman -S gdb python python-capstone python-unicorn python-pycparser python-psutil python-ptrace python-pyelftools python-six python-future python-pygments which debuginfod + sudo pacman -Syy --noconfirm || true + sudo pacman -S --noconfirm gdb python python-capstone python-unicorn python-pycparser python-psutil python-ptrace python-pyelftools python-six python-future python-pygments which debuginfod echo "set debuginfod enabled on" >> ~/.gdbinit }