diff options
author | Daringcuteseal <[email protected]> | 2024-11-28 21:21:55 +0700 |
---|---|---|
committer | Mihai Fufezan <[email protected]> | 2024-11-28 17:48:46 +0200 |
commit | 22bf2853e6271932f073961f3dbeb0f9ff48493e (patch) | |
tree | 9a985cadb6c763c1e9f7bbe579f4b7154e4fdaf4 | |
parent | 5963970be54c92fdebdbcebdeb76cf6de5e7e717 (diff) | |
download | Hyprland-22bf2853e6271932f073961f3dbeb0f9ff48493e.tar.gz Hyprland-22bf2853e6271932f073961f3dbeb0f9ff48493e.zip |
hyprpm: fix incomplete unmet dependencies message
-rw-r--r-- | hyprpm/src/core/PluginManager.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/hyprpm/src/core/PluginManager.cpp b/hyprpm/src/core/PluginManager.cpp index fb3065b4..db3893b5 100644 --- a/hyprpm/src/core/PluginManager.cpp +++ b/hyprpm/src/core/PluginManager.cpp @@ -115,7 +115,7 @@ bool CPluginManager::addNewPluginRepo(const std::string& url, const std::string& const auto HLVER = getHyprlandVersion(); if (!hasDeps()) { - std::println(stderr, "\n{}", failureString("Could not clone the plugin repository. Dependencies not satisfied. Hyprpm requires: cmake, meson, cpio")); + std::println(stderr, "\n{}", failureString("Could not clone the plugin repository. Dependencies not satisfied. Hyprpm requires: cmake, meson, cpio, pkg-config")); return false; } @@ -421,7 +421,7 @@ bool CPluginManager::updateHeaders(bool force) { const auto HLVER = getHyprlandVersion(); if (!hasDeps()) { - std::println("\n{}", failureString("Could not update. Dependencies not satisfied. Hyprpm requires: cmake, meson, cpio")); + std::println("\n{}", failureString("Could not update. Dependencies not satisfied. Hyprpm requires: cmake, meson, cpio, pkg-config")); return false; } |