From d4d625ba1f52d201c9f838a99c38bf1030d9c6d1 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Mon, 19 May 2025 13:34:31 +0200 Subject: [PATCH] Removed aur --- pkgmgr/install_repos.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkgmgr/install_repos.py b/pkgmgr/install_repos.py index d7f1ac0..250cc97 100644 --- a/pkgmgr/install_repos.py +++ b/pkgmgr/install_repos.py @@ -68,7 +68,7 @@ def install_repos( cmd = "sudo pacman -S --noconfirm " + " ".join(pacman_packages) run_command(cmd, preview=preview) # Install yay packages if defined. - if "yay" or "aur" in requirements: + if "yay" in requirements: yay_packages = requirements["yay"] if yay_packages: cmd = "yay -S " + " ".join(yay_packages)