From 3d9748c48e964f6e02b56c1cde64fa0899e82347 Mon Sep 17 00:00:00 2001 From: CarmJos Date: Sat, 8 Jan 2022 02:04:10 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B5=8B=E8=AF=95Javadoc=E9=83=A8=E7=BD=B2?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .scripts/copy-javadoc.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.scripts/copy-javadoc.sh b/.scripts/copy-javadoc.sh index 0be1eff..3fcf214 100644 --- a/.scripts/copy-javadoc.sh +++ b/.scripts/copy-javadoc.sh @@ -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