mirror of
https://github.com/OpenMW/openmw.git
synced 2025-01-16 12:29:56 +00:00
6 lines
182 B
Bash
Executable file
6 lines
182 B
Bash
Executable file
#!/bin/bash
|
|
|
|
pushd $( dirname -- "$0"; )
|
|
docker run --user "$(id -u)":"$(id -g)" --volume "$PWD/..":/openmw openmw_doc \
|
|
sphinx-build /openmw/docs/source /openmw/docs/build
|
|
popd
|