From 36fe3ed188fbc4436eaa0719b1f292de340be870 Mon Sep 17 00:00:00 2001 From: Adriaan de Groot Date: Mon, 27 May 2019 14:06:05 +0200 Subject: [PATCH] [packages] Add -Su --noconfirm - When updating the system (-Su) it may want to install newer packages; it asks for confirmation before doing so. FIXES #1154 --- src/modules/packages/main.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/modules/packages/main.py b/src/modules/packages/main.py index aac1aa6f9..aa4bb8b12 100644 --- a/src/modules/packages/main.py +++ b/src/modules/packages/main.py @@ -290,7 +290,7 @@ class PMPacman(PackageManager): check_target_env_call(["pacman", "-Sy"]) def update_system(self): - check_target_env_call(["pacman", "-Su"]) + check_target_env_call(["pacman", "-Su", "--noconfirm"]) class PMPortage(PackageManager):