diff options
author | Zach White <skullydazed@gmail.com> | 2021-05-19 15:49:11 -0700 |
---|---|---|
committer | Zach White <skullydazed@gmail.com> | 2021-05-19 15:49:11 -0700 |
commit | 6955c5a00295382d3b4151a840aa5c929cd98059 (patch) | |
tree | 26109c4ed2a266650fc5fad19ce5f784bc7c346b /lib/python/qmk/cli/generate/docs.py | |
parent | 82aa9ad4a567695d1f7d0b1e36bf8563d2967813 (diff) | |
parent | db1eacdaacb9c8f6889f46bc1c6af155b81ad72a (diff) |
Merge remote-tracking branch 'origin/master' into develop
Resolved Conflicts:
lib/python/qmk/tests/test_cli_commands.py
util/install/fedora.sh
Diffstat (limited to 'lib/python/qmk/cli/generate/docs.py')
-rw-r--r-- | lib/python/qmk/cli/generate/docs.py | 14 |
1 files changed, 8 insertions, 6 deletions
diff --git a/lib/python/qmk/cli/generate/docs.py b/lib/python/qmk/cli/generate/docs.py index a59a24db50..749336fea5 100644 --- a/lib/python/qmk/cli/generate/docs.py +++ b/lib/python/qmk/cli/generate/docs.py @@ -1,8 +1,8 @@ """Build QMK documentation locally """ import shutil -import subprocess from pathlib import Path +from subprocess import DEVNULL from milc import cli @@ -24,14 +24,16 @@ def generate_docs(cli): shutil.copytree(DOCS_PATH, BUILD_PATH) # When not verbose we want to hide all output - args = {'check': True} - if not cli.args.verbose: - args.update({'stdout': subprocess.DEVNULL, 'stderr': subprocess.STDOUT}) + args = { + 'capture_output': False if cli.config.general.verbose else True, + 'check': True, + 'stdin': DEVNULL, + } cli.log.info('Generating internal docs...') # Generate internal docs - subprocess.run(['doxygen', 'Doxyfile'], **args) - subprocess.run(['moxygen', '-q', '-a', '-g', '-o', BUILD_PATH / 'internals_%s.md', 'doxygen/xml'], **args) + cli.run(['doxygen', 'Doxyfile'], **args) + cli.run(['moxygen', '-q', '-a', '-g', '-o', BUILD_PATH / 'internals_%s.md', 'doxygen/xml'], **args) cli.log.info('Successfully generated internal docs to %s.', BUILD_PATH) |