[PATCH 4/6] cli: return error status if compaction fails
Jani Nikula
jani at nikula.org
Fri Nov 1 07:27:13 PDT 2013
---
notmuch-compact.c | 19 ++++++++++---------
1 files changed, 10 insertions(+), 9 deletions(-)
diff --git a/notmuch-compact.c b/notmuch-compact.c
index 043710f..2afa725 100644
--- a/notmuch-compact.c
+++ b/notmuch-compact.c
@@ -39,16 +39,17 @@ notmuch_compact_command (notmuch_config_t *config,
ret = notmuch_database_compact (path, backup_path, status_update_cb, NULL);
if (ret) {
fprintf (stderr, "Compaction failed: %s\n", notmuch_status_to_string(ret));
- } else {
- printf ("\n");
- printf ("\n");
- printf ("The old database has been moved to %s", backup_path);
- printf ("\n");
- printf ("To delete run,\n");
- printf ("\n");
- printf (" rm -R %s\n", backup_path);
- printf ("\n");
+ return 1;
}
+ printf ("\n");
+ printf ("\n");
+ printf ("The old database has been moved to %s", backup_path);
+ printf ("\n");
+ printf ("To delete run,\n");
+ printf ("\n");
+ printf (" rm -R %s\n", backup_path);
+ printf ("\n");
+
return 0;
}
--
1.7.2.5
More information about the notmuch
mailing list