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

26 lines
697 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)
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"
2022-07-05 16:41:23 -07:00
echo
echo "Building shell completion scripts"
./build-completions.py && echo "++++ shell completion build successful" || echo "---- shell completion build failed"