1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-17 00:07:37 +02:00
Files
jc/updatedocs.sh

15 lines
486 B
Bash
Raw Normal View History

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