Add pkgctl tool

This commit is contained in:
Martchus 2023-05-28 22:05:02 +02:00
parent cf6b90407e
commit 30a80e7aca
2 changed files with 2 additions and 0 deletions

View File

@ -162,6 +162,7 @@ void ServiceSetup::BuildSetup::applyConfig(const std::multimap<std::string, std:
convertValue(multimap, "repo_remove_path", repoRemovePath);
convertValue(multimap, "pacman_path", pacmanPath);
convertValue(multimap, "paccache_path", paccachePath);
convertValue(multimap, "pkgctl_path", pkgctlPath);
convertValue(multimap, "gpg_path", gpgPath);
convertValue(multimap, "ccache_dir", ccacheDir);
convertValue(multimap, "chroot_dir", chrootDir);

View File

@ -120,6 +120,7 @@ struct LIBREPOMGR_EXPORT ServiceSetup : public LibPkg::Lockable {
std::string repoRemovePath = "repo-remove";
std::string pacmanPath = "pacman";
std::string paccachePath = "paccache";
std::string pkgctlPath = "pkgctl";
std::string gpgPath = "gpg";
std::string ccacheDir;
std::string chrootDir;