diff --git a/bin/xbps-bin/main.c b/bin/xbps-bin/main.c index f89208b0..48e2ee86 100644 --- a/bin/xbps-bin/main.c +++ b/bin/xbps-bin/main.c @@ -41,19 +41,20 @@ usage(void) { printf("Usage: xbps-bin [options] [target] [arguments]\n\n" " Available targets:\n" - " autoremove, autoupdate, check, files, install, list\n" - " purge, remove, show, show-deps, show-revdeps, update\n" + " autoremove, autoupdate, check, install, list, purge\n" + " remove, show, show-deps, show-files, show-revdeps, update\n" + "\n" " Targets with arguments:\n" - " check\t\n" - " files\t\n" - " install\t\n" - " purge\t[|]\n" - " reconfigure\t[|]\n" - " remove\t\n" - " show\t\n" - " show-deps\t\n" + " check\t\t\n" + " install\t\t\n" + " purge\t\t[|]\n" + " reconfigure\t\t[|]\n" + " remove\t\t\n" + " show\t\t\n" + " show-deps\t\t\n" + " show-files\t\t\n" " show-revdeps\t\n" - " update\t\n" + " update\t\t\n" " Options shared by all targets:\n" " -r\t\t\n" " -v\t\t\n" @@ -178,7 +179,7 @@ main(int argc, char **argv) exit(EXIT_FAILURE); } - } else if (strcasecmp(argv[0], "files") == 0) { + } else if (strcasecmp(argv[0], "show-files") == 0) { /* Shows files installed by a binary package. */ if (argc != 2) usage();