From 5585a0aececda987d5c6af195661bac3e0c7f00b Mon Sep 17 00:00:00 2001 From: bynect <68197565+bynect@users.noreply.github.com> Date: Tue, 19 Jan 2021 17:06:44 +0100 Subject: [PATCH] Update README * Fix error in README usage options --- README.md | 6 +++--- compose.py | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index 54109fd..a0ee320 100644 --- a/README.md +++ b/README.md @@ -17,8 +17,8 @@ You can generate a single file containing both `libbson` and `libmongoc` binding #make $ make compose -#python -$ python3 compose.py +#python (only vapis) +$ python3 compose.py --onefile #meson $ meson build @@ -33,7 +33,7 @@ You can generate also generate two separated file containing `libbson` and `libm $ SEPARATED_VAPI= make compose #for python (only vapis) -$ python3 compose.py -h +$ python3 compose.py #for meson $ meson build -Donefile=false diff --git a/compose.py b/compose.py index 91837b4..a072d73 100644 --- a/compose.py +++ b/compose.py @@ -189,7 +189,7 @@ def set_verbosity(verbose, quiet): print('Done. VAPI generated in ./{} [{}]'.format(args.out, 'onefile' if args.onefile else 'separated')) finally: logging.info('\nLicensed under MIT, see LICENSE or `make license`') - logging.info('Do `python3 compose.py -h` to see usage options') + logging.info('Run `python3 compose.py -h` for usage options') else: parser.print_help(sys.stderr)