From 98b16062c0db623398b3e816426d784b06dae7fc Mon Sep 17 00:00:00 2001 From: Kristofers Solo Date: Thu, 7 Jul 2022 21:48:05 +0300 Subject: [PATCH] Removed 'archkeyrings' from install --- karbs.sh | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/karbs.sh b/karbs.sh index 3852567..7fb52bf 100755 --- a/karbs.sh +++ b/karbs.sh @@ -15,13 +15,11 @@ fi FILE = "pkg-files/$size-pkgs.txt" -paru -Syu --noconfirm --needed archlinux-keyring - if [[ -f "$FILE" ]]; then - paru -S --noconfirm --needed - <"pkg-files/$size-pkgs.txt" + paru -Syu --noconfirm --needed - <"pkg-files/$size-pkgs.txt" else curl -LO "https://raw.githubusercontent.com/kristoferssolo/karbs/main/pkg-files/$size-pkgs.txt" - paru -S --noconfirm --needed - <"$size-pkgs.txt" + paru -Syu --noconfirm --needed - <"$size-pkgs.txt" rm "$size"-pkgs.txt fi