mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-28 00:15:06 +00:00
7 lines
182 B
Bash
7 lines
182 B
Bash
|
#!/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
|