From e7d365b774b9a63fab01cc49e74acc64726eed7b Mon Sep 17 00:00:00 2001 From: Jonathan Lebon Date: Mon, 20 Apr 2020 11:16:41 -0400 Subject: [PATCH] app/compose: Fix help string for --ex-lockfile-strict Minor follow-up to #1858. Make the help string here more helpful and accurate. --- src/app/rpmostree-compose-builtin-tree.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/app/rpmostree-compose-builtin-tree.c b/src/app/rpmostree-compose-builtin-tree.c index 8652d82b71..ccbb693b73 100644 --- a/src/app/rpmostree-compose-builtin-tree.c +++ b/src/app/rpmostree-compose-builtin-tree.c @@ -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 } };