mirror of
https://github.com/fmtlib/fmt.git
synced 2025-01-02 12:06:11 +00:00
12 lines
339 B
Python
Executable File
12 lines
339 B
Python
Executable File
#!/usr/bin/env python3
|
|
# A script to invoke mkdocs with the correct environment.
|
|
|
|
import os, subprocess, sys
|
|
|
|
# Set PYTHONPATH for the mkdocstrings handler.
|
|
env = os.environ.copy()
|
|
path = env.get('PYTHONPATH')
|
|
env['PYTHONPATH'] = (path + ':' if path else '') + os.path.dirname(__file__)
|
|
|
|
subprocess.run(['mkdocs'] + sys.argv[1:], env=env)
|