From d82d19f700baa77ae577906f595b8562749852e8 Mon Sep 17 00:00:00 2001 From: waytrue17 <52505574+waytrue17@users.noreply.github.com> Date: Tue, 16 Feb 2021 13:50:26 -0800 Subject: [PATCH] Fix file path in build_docs (#19901) Co-authored-by: Wei Chu --- ci/docker/runtime_functions.sh | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/ci/docker/runtime_functions.sh b/ci/docker/runtime_functions.sh index 34245bbd7d6c..7bffd41b0c69 100755 --- a/ci/docker/runtime_functions.sh +++ b/ci/docker/runtime_functions.sh @@ -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