2021-04-04 20:56:10 -07:00
|
|
|
#!/bin/bash
|
|
|
|
# Update all documentation (README.md, Man page, Doc files)
|
|
|
|
|
2022-04-10 17:14:34 -07:00
|
|
|
(
|
|
|
|
echo === Building README.md
|
|
|
|
./readmegen.py && echo "++++ README.md build successful" || echo "---- README.md build failed"
|
|
|
|
) &
|
2022-01-27 16:14:14 -08:00
|
|
|
|
2022-04-10 17:14:34 -07:00
|
|
|
(
|
|
|
|
echo === Building man page
|
|
|
|
./mangen.py && echo "++++ man page build successful" || echo "---- man page build failed"
|
|
|
|
) &
|
2022-01-27 16:14:14 -08:00
|
|
|
|
2022-04-10 17:14:34 -07:00
|
|
|
(
|
|
|
|
echo === Building documentation
|
|
|
|
./docgen.sh && echo "++++ documentation build successful" || echo "---- documentation build failed"
|
|
|
|
) &
|
2022-04-10 16:54:22 -07:00
|
|
|
|
|
|
|
wait
|
2022-04-10 17:14:34 -07:00
|
|
|
echo
|
|
|
|
echo "All documentation updated"
|