From 312de94059934fbd1ae173106d2e758293a02c08 Mon Sep 17 00:00:00 2001 From: dr460nf1r3 Date: Mon, 5 Jul 2021 07:19:57 +0200 Subject: [PATCH] Suppress unnecessary output --- usr/bin/update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/usr/bin/update b/usr/bin/update index 82b140c..33d222e 100755 --- a/usr/bin/update +++ b/usr/bin/update @@ -16,7 +16,7 @@ echo "" # Check for keyring update & update as needed echo "Checking for keyring update, then update as needed.." -if pacman -Qq blackarch-keyring; then +if pacman -Qq blackarch-keyring &> /dev/null; then sudo pacman -Sy archlinux-keyring blackarch-keyring chaotic-keyring --needed && $upd_cmd else sudo pacman -Sy archlinux-keyring chaotic-keyring --needed && $upd_cmd fi