From fbf0135a99fe21677333201d043e132d285df56b Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Fri, 27 Jan 2023 01:10:37 +0100 Subject: [PATCH] build: Simplify by removing extra documentation The Meson adapter scripts are simple enough that they don't need detailed descriptions for their command line arguments. The cost of formulating succint descriptions doesn't justify the benefits. https://github.com/containers/toolbox/pull/1216 --- completion/meson_generate_completions.py | 3 --- 1 file changed, 3 deletions(-) diff --git a/completion/meson_generate_completions.py b/completion/meson_generate_completions.py index 3518599..07e3b80 100644 --- a/completion/meson_generate_completions.py +++ b/completion/meson_generate_completions.py @@ -23,9 +23,6 @@ import sys if len(sys.argv) != 3: print('{}: wrong arguments'.format(sys.argv[0]), file=sys.stderr) print('Usage: {} [SOURCE DIR] [COMPLETION TYPE]'.format(sys.argv[0]), file=sys.stderr) - print() - print("SOURCE DIR is path to the Toolbox Go source code") - print("COMPLETION TYPE is either 'bash', 'zsh' or 'fish'") sys.exit(1) source_dir = sys.argv[1]