Manager: Drop 'cat' package dependency

This commit is contained in:
Riyyi
2022-02-02 22:10:37 +01:00
parent 7672180eb7
commit 439f39218b
+1 -3
View File
@@ -134,10 +134,8 @@ void Package::installOrAurInstall(InstallType type)
if (type == InstallType::AurInstall) { if (type == InstallType::AurInstall) {
// Determine which packages in the list are from the AUR // Determine which packages in the list are from the AUR
auto aurCommand = "grep -vx '" + repoList.output() + "'";
// NOTE: Util::System does not support commands with newlines // NOTE: Util::System does not support commands with newlines
auto aurList = Util::Shell()("cat ./packages | " + aurCommand); auto aurList = Util::Shell()("grep -vx '" + repoList.output() + "' ./packages");
command = aurHelper.value() + " -Sy --devel --needed --noconfirm " + aurList.output(); command = aurHelper.value() + " -Sy --devel --needed --noconfirm " + aurList.output();
} }
else { else {