1
mirror of https://github.com/CarmJos/EasyPlugin.git synced 2026-06-04 08:38:17 +08:00

测试Javadoc部署

This commit is contained in:
2022-01-08 02:04:10 +08:00
parent aaba1a8097
commit 3d9748c48e
+2 -2
View File
@@ -3,12 +3,12 @@ mkdir -vp docs
for FILE in easyplugin-*; do
if test -e "$FILE/target/apidocs/"; then
if test -e "$FILE/target/site/apidocs/"; then
DOC_NAME="${FILE:11}"
mkdir -vp "docs/$DOC_NAME/"
cp -vrf "$FILE/target/apidocs/*" "docs/$DOC_NAME/"
cp -vrf "$FILE/target/site/apidocs/*" "docs/$DOC_NAME/"
fi