manifest: fix up help entry

cute-signatures
William Pitcock 2017-05-28 01:09:42 +00:00
parent 693b4bcdb0
commit 3eb0a0aaa4
1 changed files with 5 additions and 4 deletions

View File

@ -124,10 +124,11 @@ static int manifest_main(void *ctx, struct apk_database *db, struct apk_string_a
} }
static struct apk_applet apk_manifest = { static struct apk_applet apk_manifest = {
.name = "manifest", .name = "manifest",
.help = "Show checksums of package contents", .help = "Show checksums of package contents",
.open_flags = APK_OPENF_READ, .arguments = "PACKAGE...",
.main = manifest_main, .open_flags = APK_OPENF_READ,
.main = manifest_main,
}; };
APK_DEFINE_APPLET(apk_manifest); APK_DEFINE_APPLET(apk_manifest);