Skip to content
This repository has been archived by the owner on Nov 17, 2023. It is now read-only.

Commit

Permalink
Fix file path in build_docs (#19901)
Browse files Browse the repository at this point in the history
Co-authored-by: Wei Chu <[email protected]>
  • Loading branch information
waytrue17 and Wei Chu authored Feb 16, 2021
1 parent e164cee commit d82d19f
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion ci/docker/runtime_functions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -1191,10 +1191,14 @@ build_docs() {

# copy the full site for this version to versions folder
mkdir -p html/versions/master
for f in 404.html api assets blog community ecosystem features feed.xml get_started index.html; do
for f in 404.html api assets community feed.xml get_started index.html; do
cp -r html/$f html/versions/master/
done

for f in blog ecosystem features; do
cp -r html/pages/$f html/versions/master/
done

# clean up temp files
find html -type f -name '.DS_Store' -delete

Expand Down

0 comments on commit d82d19f

Please sign in to comment.