mirror of
https://github.com/CarmJos/EasyPlugin.git
synced 2026-06-04 16:48:16 +08:00
测试Javadoc部署
This commit is contained in:
@@ -1,10 +1,17 @@
|
|||||||
rm -rf docs
|
rm -rf docs
|
||||||
mkdir -vp docs
|
mkdir -vp docs
|
||||||
|
|
||||||
for i in easyplugin*; do
|
for FILE in easyplugin-*; do
|
||||||
if test -e "$i/target/apidocs/"; then
|
|
||||||
cp -vrf "$i/target/apidocs/*" "docs/$1/"
|
if test -e "$FILE/target/apidocs/"; then
|
||||||
|
|
||||||
|
DOC_NAME="${FILE:11}"
|
||||||
|
mkdir -vp "docs/$DOC_NAME/"
|
||||||
|
|
||||||
|
cp -vrf "$FILE/target/apidocs/*" "docs/$DOC_NAME/"
|
||||||
|
|
||||||
fi
|
fi
|
||||||
|
|
||||||
done
|
done
|
||||||
|
|
||||||
cp -vrf .documentation/javadoc/JAVADOC-README.md docs/README.md
|
cp -vrf .documentation/javadoc/JAVADOC-README.md docs/README.md
|
||||||
|
|||||||
Reference in New Issue
Block a user