diff options
author | Richard Hughes <richard@hughsie.com> | 2015-04-07 09:59:52 +0100 |
---|---|---|
committer | Richard Hughes <richard@hughsie.com> | 2015-04-07 10:00:18 +0100 |
commit | d8d007165a4c98f462785955b3c7a4bc4572cf8c (patch) | |
tree | ccc6d73d8714dc0c8a6398d06323ec867f9f54ed /client | |
parent | 067ea762046fd1045cd41794c553c468eb73a7d0 (diff) | |
download | appstream-glib-d8d007165a4c98f462785955b3c7a4bc4572cf8c.tar.gz |
Remove the batch output option from the builder
This removes the panel, which does not work well when the console is not a real
onsole, which is typical in most cases where the builder is being run.
Diffstat (limited to 'client')
-rw-r--r-- | client/as-builder.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/client/as-builder.c b/client/as-builder.c index 2ff0c12..7fe654a 100644 --- a/client/as-builder.c +++ b/client/as-builder.c @@ -129,7 +129,6 @@ main (int argc, char **argv) GOptionContext *option_context; const gchar *filename; gboolean add_cache_id = FALSE; - gboolean batch_output = FALSE; gboolean embedded_icons = FALSE; gboolean hidpi_enabled = FALSE; gboolean include_failed = FALSE; @@ -175,9 +174,6 @@ main (int argc, char **argv) { "uncompressed-icons", '\0', 0, G_OPTION_ARG_NONE, &uncompressed_icons, /* TRANSLATORS: command line option */ _("Do not compress the icons into a tarball"), NULL }, - { "batch-output", '\0', 0, G_OPTION_ARG_NONE, &batch_output, - /* TRANSLATORS: command line option */ - _("Do not use escape sequences in terminal output"), NULL }, { "log-dir", '\0', 0, G_OPTION_ARG_FILENAME, &log_dir, /* TRANSLATORS: command line option */ _("Set the logging directory"), "DIR" }, @@ -308,8 +304,6 @@ main (int argc, char **argv) flags |= ASB_CONTEXT_FLAG_INCLUDE_FAILED; if (uncompressed_icons) flags |= ASB_CONTEXT_FLAG_UNCOMPRESSED_ICONS; - if (batch_output) - flags |= ASB_CONTEXT_FLAG_BATCH_OUTPUT; asb_context_set_flags (ctx, flags); ret = asb_context_setup (ctx, &error); |