summaryrefslogtreecommitdiff
path: root/app/flatpak-builtins-info.c
diff options
context:
space:
mode:
authorMatthias Clasen <mclasen@redhat.com>2019-01-08 23:19:18 -0500
committerAtomic Bot <atomic-devel@projectatomic.io>2019-01-11 12:40:35 +0000
commitd07e85d8ad415412ba2664634ae9e11417ab72be (patch)
treec3bdb80e4dacd5295b91ae588beae677c6afc368 /app/flatpak-builtins-info.c
parentd7d317dfe1d07c468ce47bb647575666ac17942a (diff)
downloadflatpak-d07e85d8ad415412ba2664634ae9e11417ab72be.tar.gz
info: Fix the --installation arg name
The info command has its own --system/--user/--installation options, but it was not setting a name for the argument of --installation. This was showing up in the completion missing a '=' after --installation. Closes: #2534 Approved by: alexlarsson
Diffstat (limited to 'app/flatpak-builtins-info.c')
-rw-r--r--app/flatpak-builtins-info.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/flatpak-builtins-info.c b/app/flatpak-builtins-info.c
index e4d74dbb..550ba4f2 100644
--- a/app/flatpak-builtins-info.c
+++ b/app/flatpak-builtins-info.c
@@ -54,7 +54,7 @@ static GOptionEntry options[] = {
{ "arch", 0, 0, G_OPTION_ARG_STRING, &opt_arch, N_("Arch to use"), N_("ARCH") },
{ "user", 0, 0, G_OPTION_ARG_NONE, &opt_user, N_("Show user installations"), NULL },
{ "system", 0, 0, G_OPTION_ARG_NONE, &opt_system, N_("Show system-wide installations"), NULL },
- { "installation", 0, 0, G_OPTION_ARG_STRING_ARRAY, &opt_installations, N_("Show specific system-wide installations"), NULL },
+ { "installation", 0, 0, G_OPTION_ARG_STRING_ARRAY, &opt_installations, N_("Show specific system-wide installations"), N_("NAME") },
{ "show-ref", 'r', 0, G_OPTION_ARG_NONE, &opt_show_ref, N_("Show ref"), NULL },
{ "show-commit", 'c', 0, G_OPTION_ARG_NONE, &opt_show_commit, N_("Show commit"), NULL },
{ "show-origin", 'o', 0, G_OPTION_ARG_NONE, &opt_show_origin, N_("Show origin"), NULL },