From 5f023e579a3c7544a1b6e92b8b274ba867279dc7 Mon Sep 17 00:00:00 2001 From: Riyyi Date: Wed, 2 Feb 2022 14:07:45 +0100 Subject: [PATCH] Manager: Enable flag for -git AUR package installation --- src/package.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/package.cpp b/src/package.cpp index 380a031..1e8bc3d 100644 --- a/src/package.cpp +++ b/src/package.cpp @@ -94,7 +94,7 @@ void Package::installOrAurInstall(InstallType type) // NOTE: Util::System does not support commands with newlines auto aurList = Util::Shell()("cat ./packages | " + aurCommand); - command = "trizen -Sy --needed --noconfirm " + aurList.output(); + command = "trizen -Sy --devel --needed --noconfirm " + aurList.output(); } else { command = "sudo pacman -Sy --needed " + repoList.output();