app/compose: Fix help string for --ex-lockfile-strict

Minor follow-up to #1858. Make the help string here more helpful and
accurate.
This commit is contained in:
Jonathan Lebon 2020-04-20 11:16:41 -04:00 committed by OpenShift Merge Robot
parent dbb776f17d
commit 682aad249b

View File

@ -105,7 +105,7 @@ static GOptionEntry install_option_entries[] = {
{ "workdir-tmpfs", 0, G_OPTION_FLAG_HIDDEN, G_OPTION_ARG_NONE, &opt_workdir_tmpfs, "Use tmpfs for working state", NULL },
{ "ex-write-lockfile-to", 0, 0, G_OPTION_ARG_STRING, &opt_write_lockfile_to, "Write lockfile to FILE", "FILE" },
{ "ex-lockfile", 0, 0, G_OPTION_ARG_STRING_ARRAY, &opt_lockfiles, "Read lockfile from FILE", "FILE" },
{ "ex-lockfile-strict", 0, 0, G_OPTION_ARG_NONE, &opt_lockfile_strict, "With --ex-lockfile, require full match", NULL },
{ "ex-lockfile-strict", 0, 0, G_OPTION_ARG_NONE, &opt_lockfile_strict, "With --ex-lockfile, only allow installing locked packages", NULL },
{ NULL }
};