Added documentation generation to the pipeline, this can be retreived as an artifact and deployed on the webserver from master.
9 lines
199 B
Bash
9 lines
199 B
Bash
#!/bin/bash
|
|
echo " "
|
|
echo "======================="
|
|
echo " "
|
|
echo "Generating Source List..."
|
|
echo " "
|
|
find "$(cd ..; pwd)" -name "*.pas" > sources.list
|
|
echo "Finished Source List Generation."
|
|
exit 0 |