diff options
Diffstat (limited to 'src/add.c')
-rw-r--r-- | src/add.c | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -156,13 +156,12 @@ static struct apk_option add_options[] = { "Instead of adding all the packages to 'world', create a new virtual " "package with the listed dependencies and add that to 'world'. The " "actions of the command are easily reverted by deleting the virtual " - "package.", required_argument, "NAME" }, + "package", required_argument, "NAME" }, }; static struct apk_applet apk_add = { .name = "add", - .help = "Add (or update) PACKAGEs to main dependencies and install " - "them, while ensuring that all dependencies are met.", + .help = "Add/update PACKAGEs to main dependencies and install them", .arguments = "PACKAGE...", .open_flags = APK_OPENF_WRITE, .context_size = sizeof(struct add_ctx), |