1
0
mirror of https://github.com/kellyjonbrazil/jc.git synced 2025-06-21 00:19:42 +02:00

add status messages

This commit is contained in:
Kelly Brazil
2021-04-05 09:42:25 -07:00
parent b5ec16c5ca
commit 88bd7554ae
2 changed files with 8 additions and 3 deletions

View File

@ -3,7 +3,9 @@
# requires pydoc-markdown 2.1.0.post1 # requires pydoc-markdown 2.1.0.post1
cd jc cd jc
echo Building docs for: package
pydocmd simple jc+ > ../docs/readme.md pydocmd simple jc+ > ../docs/readme.md
echo Building docs for: utils
pydocmd simple utils+ > ../docs/utils.md pydocmd simple utils+ > ../docs/utils.md
# a bit of inception here... jc is being used to help # a bit of inception here... jc is being used to help

View File

@ -1,6 +1,9 @@
#!/bin/bash #!/bin/bash
# Update all documentation (README.md, Man page, Doc files) # Update all documentation (README.md, Man page, Doc files)
./readmegen.py echo === Building README.md
./mangen.py ./readmegen.py && echo "+++ README.md build successful" || echo "--- README.md build failed"
./docgen.sh echo === Building man page
./mangen.py && echo "+++ man page build successful" || echo "--- man page build failed"
echo === Building documentation
./docgen.sh && echo "+++ documentation build successful" || echo "--- documentation build failed"