ostree init: Fix mode list help string

It's archive-z2, not archive-z.

https://bugzilla.gnome.org/show_bug.cgi?id=705849
This commit is contained in:
Sjoerd Simons 2013-08-12 10:53:03 +02:00 committed by Colin Walters
parent d1babde95e
commit e5d9bd97aa

View File

@ -31,7 +31,7 @@ static char *opt_mode = NULL;
static GOptionEntry options[] = {
{ "archive", 0, 0, G_OPTION_ARG_NONE, &opt_archive, "Initialize repository as archive", NULL },
{ "mode", 0, 0, G_OPTION_ARG_STRING, &opt_mode, "Initialize repository in given mode (bare, archive, archive-z)", NULL },
{ "mode", 0, 0, G_OPTION_ARG_STRING, &opt_mode, "Initialize repository in given mode (bare, archive-z2)", NULL },
{ NULL }
};