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:
@ -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
|
||||||
|
@ -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"
|
||||||
|
Reference in New Issue
Block a user