diff options
author | Vaxry <[email protected]> | 2023-12-06 21:47:00 +0000 |
---|---|---|
committer | Vaxry <[email protected]> | 2023-12-06 23:31:04 +0000 |
commit | c8ef1ec26ba8686642484b565c07107f82efea8d (patch) | |
tree | c03cd97e5773b2cfe62ae3bec0230d3e952ec53a | |
parent | 76cb99c9ae0deae1cb99a48eba51fc7a45368f19 (diff) | |
download | Hyprland-c8ef1ec26ba8686642484b565c07107f82efea8d.tar.gz Hyprland-c8ef1ec26ba8686642484b565c07107f82efea8d.zip |
fix missed newlines
-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 0859b6f8..b404e216 100644 --- a/hyprpm/src/core/PluginManager.cpp +++ b/hyprpm/src/core/PluginManager.cpp @@ -363,7 +363,7 @@ bool CPluginManager::updateHeaders() { bool CPluginManager::updatePlugins(bool forceUpdateAll) { if (headersValid() != HEADERS_OK) { - std::cout << "\n" << std::string{Colors::RED} + "✖" + Colors::RESET + " headers are not up-to-date, please run hyprpm update."; + std::cout << "\n" << std::string{Colors::RED} + "✖" + Colors::RESET + " headers are not up-to-date, please run hyprpm update.\n"; return false; } @@ -540,7 +540,7 @@ bool CPluginManager::disablePlugin(const std::string& name) { ePluginLoadStateReturn CPluginManager::ensurePluginsLoadState() { if (headersValid() != HEADERS_OK) { - std::cerr << "\n" << std::string{Colors::RED} + "✖" + Colors::RESET + " headers are not up-to-date, please run hyprpm update."; + std::cerr << "\n" << std::string{Colors::RED} + "✖" + Colors::RESET + " headers are not up-to-date, please run hyprpm update.\n"; return LOADSTATE_HEADERS_OUTDATED; } |