From afa42ce0a31b9ffe5273b0d51e6c1d5ba3b3e2fc Mon Sep 17 00:00:00 2001 From: Oliver Smith Date: Fri, 9 Jun 2017 19:49:01 +0200 Subject: [PATCH] pmbootstrap initfs: Make wording in --help more consistent --- pmb/parse/arguments.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pmb/parse/arguments.py b/pmb/parse/arguments.py index dc3214ca..43e8ac8c 100644 --- a/pmb/parse/arguments.py +++ b/pmb/parse/arguments.py @@ -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",