mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-23 18:25:45 +00:00
13 lines
225 B
Bash
Executable file
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
|