Skip to content

Commit

Permalink
publish_api_docs_android.sh fix: create parent folders if needed (#1404)
Browse files Browse the repository at this point in the history
  • Loading branch information
RingerJK authored Apr 14, 2022
1 parent cfce74a commit 094695c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/publish_api_docs_android.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ copyDocumentsToDocsFolders() {
for fullPath in `find $GENERATED_DOCS_FOLDER -type d -maxdepth 1 -mindepth 1 | grep $DOCS_PREFIX` ; do
docsDirectory=`basename $fullPath`
targetDirectory=$PATH_TO_REPO/$docsDirectory/$VERSION_NUMBER
mkdir $targetDirectory
mkdir -p $targetDirectory
cp -r $fullPath/javadoc/. $targetDirectory
done
}
Expand Down

0 comments on commit 094695c

Please sign in to comment.