1
0
mirror of https://github.com/unrealircd/unrealircd.git synced 2026-06-12 19:14:46 +02:00

We now use a non-zero exitcode if ./unrealircd module install ... fails

Reported by ikci in https://bugs.unrealircd.org/view.php?id=6578
This commit is contained in:
Bram Matthys
2026-01-23 13:15:17 +01:00
parent af0f1fdd6b
commit ef75962a70
+2
View File
@@ -1639,6 +1639,8 @@ void modulemanager(int argc, char *args[])
{
if (mm_install(argc, args, 0))
fprintf(stderr, "All actions were successful.\n");
else
exit(1);
}
else if (!strcasecmp(args[0], "upgrade"))
mm_upgrade(argc, args);