mirror of
https://github.com/hyprwm/Hyprland
synced 2024-12-25 18:49:47 +01:00
fix missed newlines
This commit is contained in:
parent
76cb99c9ae
commit
c8ef1ec26b
1 changed files with 2 additions and 2 deletions
|
@ -363,7 +363,7 @@ bool CPluginManager::updateHeaders() {
|
||||||
|
|
||||||
bool CPluginManager::updatePlugins(bool forceUpdateAll) {
|
bool CPluginManager::updatePlugins(bool forceUpdateAll) {
|
||||||
if (headersValid() != HEADERS_OK) {
|
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;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -540,7 +540,7 @@ bool CPluginManager::disablePlugin(const std::string& name) {
|
||||||
|
|
||||||
ePluginLoadStateReturn CPluginManager::ensurePluginsLoadState() {
|
ePluginLoadStateReturn CPluginManager::ensurePluginsLoadState() {
|
||||||
if (headersValid() != HEADERS_OK) {
|
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;
|
return LOADSTATE_HEADERS_OUTDATED;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue