Skip to content

Commit

Permalink
Update README
Browse files Browse the repository at this point in the history
* Fix error in README usage options
  • Loading branch information
bynect committed Jan 19, 2021
1 parent fd3baf6 commit 5585a0a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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
Expand Down
2 changes: 1 addition & 1 deletion compose.py
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down

0 comments on commit 5585a0a

Please sign in to comment.