From e83615666326049492d75e4f4292cd2d8fc240a9 Mon Sep 17 00:00:00 2001 From: Kevin Veen-Birkenbach Date: Fri, 18 Jul 2025 13:31:19 +0200 Subject: [PATCH] Solved whitespace bug --- 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 ce7f650..9803f43 100644 --- a/pkgmgr/install_repos.py +++ b/pkgmgr/install_repos.py @@ -71,7 +71,7 @@ def install_repos( if "yay" in requirements: yay_packages = requirements["yay"] if yay_packages: - cmd = "yay -S --noconfirm" + " ".join(yay_packages) + cmd = "yay -S --noconfirm " + " ".join(yay_packages) run_command(cmd, preview=preview) # Install pkgmgr packages if defined. if "pkgmgr" in requirements: