miller/docs/build-one
John Kerl a14ddd764e Miller-6 docs iteration (#576)
* Windows screenshots
* Miller-on-Windows page
* Iterating
2021-06-25 23:22:33 -04:00

13 lines
225 B
Bash
Executable file

#!/bin/bash
set -euo pipefail
if [ $# -ge 1 ]; then
for name; do
if [[ $name == *.rst.in ]]; then
genrst $name;
fi
done
else
for rstin in *.rst.in; do genrst $rstin; done
fi
sphinx-build -M html . _build