diff options
Diffstat (limited to 'components/bootstrap_debootstrap')
-rwxr-xr-x | components/bootstrap_debootstrap | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/components/bootstrap_debootstrap b/components/bootstrap_debootstrap index 00d86c327..74805c6e5 100755 --- a/components/bootstrap_debootstrap +++ b/components/bootstrap_debootstrap @@ -32,11 +32,11 @@ def main(): description = '''live-build contains the components to build a live system from a configuration directory. The bootstrap_debootstrap command bootstraps the chroot system with debootstrap.''', epilog = 'See \'man lb_bootstrap_debootstrap\' for more information.', - version = 'live-build 4', formatter_class = argparse.ArgumentDefaultsHelpFormatter ) - arguments.add_argument('--verbose', help='set verbose option', action='store_true') + arguments.add_argument('--version', help='show program\'s version number and exit', action='version', version='live-build 4') + arguments.add_argument('--verbose', help='set verbose option', action='store_true') arguments.add_argument('--debootstrap-options', help='set debootstrap(8) options' ) args = arguments.parse_args() |