mirror of
https://github.com/johnkerl/miller.git
synced 2026-01-24 02:36:15 +00:00
14 lines
213 B
Bash
Executable file
14 lines
213 B
Bash
Executable file
#!/bin/bash
|
|
set -euo pipefail
|
|
|
|
if [ $# -ge 1 ]; then
|
|
for name; do
|
|
if [[ $name == *.md.in ]]; then
|
|
genmds $name;
|
|
fi
|
|
done
|
|
else
|
|
for rstin in *.md.in; do genmds $rstin; done
|
|
fi
|
|
cd ..
|
|
#mkdocs build
|