1
mirror of https://github.com/CarmJos/EasyPlugin.git synced 2024-09-20 11:45:48 +00:00
EasyPlugin/.scripts/copy-javadoc.sh

19 lines
361 B
Bash
Raw Normal View History

2022-01-07 17:47:49 +00:00
rm -rf docs
mkdir -vp docs
2022-01-07 18:01:28 +00:00
for FILE in easyplugin-*; do
2022-01-07 18:04:10 +00:00
if test -e "$FILE/target/site/apidocs/"; then
2022-01-07 18:01:28 +00:00
DOC_NAME="${FILE:11}"
mkdir -vp "docs/$DOC_NAME/"
2022-01-07 18:04:10 +00:00
cp -vrf "$FILE/target/site/apidocs/*" "docs/$DOC_NAME/"
2022-01-07 18:01:28 +00:00
2022-01-07 17:47:49 +00:00
fi
2022-01-07 18:01:28 +00:00
2022-01-07 17:47:49 +00:00
done
cp -vrf .documentation/javadoc/JAVADOC-README.md docs/README.md
cp -vrf .documentation/javadoc/index.html docs/index.html