Solved whitespace bug

This commit is contained in:
Kevin Veen-Birkenbach
2025-07-18 13:31:19 +02:00
parent b7fb47e217
commit e836156663

View File

@@ -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: