From 7c43eed2c1e6c56ab56d1bded4a6701b5598b1c3 Mon Sep 17 00:00:00 2001 From: Aaron Blasko Date: Thu, 19 Dec 2024 01:33:57 +0100 Subject: [PATCH] hyprpm: fix hyrpm sometimes returning 0 despite errors occuring (#8761) * hyprpm: fix hyrpm sometimes returning 0 despite errors occuring * there u go --- hyprpm/src/main.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/hyprpm/src/main.cpp b/hyprpm/src/main.cpp index 8e67af993..103132f92 100644 --- a/hyprpm/src/main.cpp +++ b/hyprpm/src/main.cpp @@ -73,7 +73,7 @@ int main(int argc, char** argv, char** envp) { if (command.empty()) { std::println(stderr, "{}", HELP); - return 0; + return 1; } g_pPluginManager = std::make_unique(); @@ -165,6 +165,7 @@ int main(int argc, char** argv, char** envp) { break; default: break; } + return 1; } else if (notify && !notifyFail) { g_pPluginManager->notify(ICON_OK, 0, 4000, "[hyprpm] Loaded plugins"); }