Asuro/compile_sourcelist.sh
Kieron Morris c5bafa9fa9 Added pasdoc generation to the pipeline
Added documentation generation to the pipeline, this can be retreived as an artifact and deployed on the webserver from master.
2021-07-05 16:00:00 +01:00

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