aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorWilliam Pitcock <nenolod@dereferenced.org>2017-05-28 01:09:42 +0000
committerWilliam Pitcock <nenolod@dereferenced.org>2017-05-28 01:09:42 +0000
commit3eb0a0aaa49961b046cfaed38eb27f61b702d647 (patch)
tree6347ffd02130962fdae11dcfff0b101208212ffc /src
parent693b4bcdb0f22904a521a7c8ac4f13e697dc4d71 (diff)
manifest: fix up help entry
Diffstat (limited to 'src')
-rw-r--r--src/manifest.c9
1 files changed, 5 insertions, 4 deletions
diff --git a/src/manifest.c b/src/manifest.c
index fe91b63..c7ab789 100644
--- a/src/manifest.c
+++ b/src/manifest.c
@@ -124,10 +124,11 @@ static int manifest_main(void *ctx, struct apk_database *db, struct apk_string_a
}
static struct apk_applet apk_manifest = {
- .name = "manifest",
- .help = "Show checksums of package contents",
- .open_flags = APK_OPENF_READ,
- .main = manifest_main,
+ .name = "manifest",
+ .help = "Show checksums of package contents",
+ .arguments = "PACKAGE...",
+ .open_flags = APK_OPENF_READ,
+ .main = manifest_main,
};
APK_DEFINE_APPLET(apk_manifest);