Skip to content

Commit

Permalink
Add support for sphinx-build -M ('make mode') (#173)
Browse files Browse the repository at this point in the history
  • Loading branch information
AA-Turner committed Sep 3, 2024
1 parent e6101ff commit e25b8ec
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions sphinx_autobuild/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,11 @@ def _get_sphinx_build_parser():
# Fix the version
action.version = f"%(prog)s {__version__}"
break
sphinx_build_parser.add_argument(
"-M",
dest="use_make_mode",
help=argparse.SUPPRESS,
)
_add_autobuild_arguments(sphinx_build_parser)

return sphinx_build_parser
Expand Down

0 comments on commit e25b8ec

Please sign in to comment.