bin/xbps-checkvers: align help text with spaces

This commit is contained in:
Piotr Wójcik
2020-01-18 18:48:07 +01:00
committed by Juan RP
parent cd0f81d68c
commit 2d3ed8db19

View File

@ -78,22 +78,22 @@ show_usage(const char *prog)
fprintf(stderr, fprintf(stderr,
"Usage: %s [OPTIONS] [FILES...]\n\n" "Usage: %s [OPTIONS] [FILES...]\n\n"
"OPTIONS:\n" "OPTIONS:\n"
" -h --help Show this helpful help-message for help.\n" " -h --help Show this helpful help-message for help.\n"
" -C --config <dir> Set path to xbps.d\n" " -C --config <dir> Set path to xbps.d\n"
" -D --distdir <dir> Set (or override) the path to void-packages\n" " -D --distdir <dir> Set (or override) the path to void-packages\n"
" (defaults to ~/void-packages).\n" " (defaults to ~/void-packages).\n"
" -d --debug Enable debug output to stderr.\n" " -d --debug Enable debug output to stderr.\n"
" -e --removed List packages present in repos, but not in distdir.\n" " -e --removed List packages present in repos, but not in distdir.\n"
" -f --format <fmt> Output format.\n" " -f --format <fmt> Output format.\n"
" -I --installed Check for outdated packages in rootdir, rather\n" " -I --installed Check for outdated packages in rootdir, rather\n"
" than in the XBPS repositories.\n" " than in the XBPS repositories.\n"
" -i --ignore-conf-repos Ignore repositories defined in xbps.d.\n" " -i --ignore-conf-repos Ignore repositories defined in xbps.d.\n"
" -m --manual Only process listed files.\n" " -m --manual Only process listed files.\n"
" -R --repository=<url> Append repository to the head of repository list.\n" " -R --repository=<url> Append repository to the head of repository list.\n"
" -r --rootdir <dir> Set root directory (defaults to /).\n" " -r --rootdir <dir> Set root directory (defaults to /).\n"
" -s --show-all List all packages, in the format 'pkgname repover srcver'.\n" " -s --show-all List all packages, in the format 'pkgname repover srcver'.\n"
"\n [FILES...] Extra packages to process with the outdated\n" "\n [FILES...] Extra packages to process with the outdated\n"
" ones (only processed if missing).\n\n", " ones (only processed if missing).\n\n",
prog); prog);
return EXIT_FAILURE; return EXIT_FAILURE;
} }