diff options
author | Vaxry <[email protected]> | 2024-11-17 16:46:49 +0000 |
---|---|---|
committer | Vaxry <[email protected]> | 2024-11-18 14:26:44 +0000 |
commit | a4a1ad1f9bca41565212c7386bece8d25b9c322c (patch) | |
tree | b03dbd629ff23b3173e9ab3f030425b5bb8b71f9 | |
parent | 737b51d032fce132ea2c388f075d85ebd955f62f (diff) | |
download | Hyprland-a4a1ad1f9bca41565212c7386bece8d25b9c322c.tar.gz Hyprland-a4a1ad1f9bca41565212c7386bece8d25b9c322c.zip |
hyprpm: fix format crash
ref #8487
-rw-r--r-- | hyprpm/src/core/PluginManager.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hyprpm/src/core/PluginManager.cpp b/hyprpm/src/core/PluginManager.cpp index 57c67641..48294322 100644 --- a/hyprpm/src/core/PluginManager.cpp +++ b/hyprpm/src/core/PluginManager.cpp @@ -275,7 +275,7 @@ bool CPluginManager::addNewPluginRepo(const std::string& url, const std::string& } if (m_bVerbose) - std::println("{}", verboseString("shell returned: " + out)); + std::println("{}", verboseString("shell returned: {}", out)); if (!std::filesystem::exists(m_szWorkingPluginDirectory + "/" + p.output)) { progress.printMessageAbove(failureString("Plugin {} failed to build.\n" |