pmbootstrap initfs: Make wording in --help more consistent

This commit is contained in:
Oliver Smith 2017-06-09 19:49:01 +02:00
parent 9619682dea
commit afa42ce0a3
No known key found for this signature in database
GPG Key ID: 5AE7F5513E0885CB
1 changed files with 2 additions and 3 deletions

View File

@ -59,10 +59,9 @@ def arguments_initfs(subparser):
" '" + pmb.config.initfs_hook_prefix + "' prefix, for example: 'usb-shell'")
# ls, build, extract
ls = sub.add_parser("ls", help="list initfs contents")
ls = sub.add_parser("ls", help="list initramfs contents")
build = sub.add_parser("build", help="(re)build the initramfs")
extract = sub.add_parser("extract", help="extract the initramfs to a temporary folder"
" inside the (native) chroot")
extract = sub.add_parser("extract", help="extract the initramfs to a temporary folder")
for action in [ls, build, extract]:
action.add_argument(
"--flavor",