mirror of
https://gitlab.com/OpenMW/openmw.git
synced 2024-12-27 06:14:09 +00:00
7 lines
182 B
Bash
Executable File
7 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
|