diff options
author | Ruixin Bao <peter.bao@mail.utoronto.ca> | 2017-10-17 20:42:04 +0000 |
---|---|---|
committer | Atomic Bot <atomic-devel@projectatomic.io> | 2017-10-20 12:59:33 +0000 |
commit | 9166605e5acbffd2c4db4e8a374770830f900fbc (patch) | |
tree | 8f22a5b48985c0f7a222cd4d4adb232f08ecb2aa /src/ostree/main.c | |
parent | 298c151fd8f78e6c3f6f199cd32981ae3d311828 (diff) | |
download | ostree-9166605e5acbffd2c4db4e8a374770830f900fbc.tar.gz |
ostree: provide command description in a better place
This is similar idea as
https://github.com/projectatomic/rpm-ostree/pull/916/commits/5c0bf889155573feec108501ce849ac09a0c9567,
The duplicated description is now removed, and the description
of the command is now displayed beneath the Usage.
For example:
ostree cat -h will output the following:
"Usage:
ostree cat [OPTION?] COMMIT PATH...
Concatenate contents of files"
Closes: #1267
Approved by: cgwalters
Diffstat (limited to 'src/ostree/main.c')
-rw-r--r-- | src/ostree/main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ostree/main.c b/src/ostree/main.c index 4ae261d6..d50c2490 100644 --- a/src/ostree/main.c +++ b/src/ostree/main.c @@ -39,7 +39,7 @@ static OstreeCommand commands[] = { */ { "admin", OSTREE_BUILTIN_FLAG_NO_REPO, ostree_builtin_admin, - "Commands that needs admin privilege" }, + "Commands for managing a host system booted with ostree" }, { "cat", OSTREE_BUILTIN_FLAG_NONE, ostree_builtin_cat, "Concatenate contents of files"}, |