From b28d7ed352082f281a3af65b454408889e5557f2 Mon Sep 17 00:00:00 2001 From: Wei Chu Date: Mon, 15 Feb 2021 14:31:02 -0800 Subject: [PATCH] fix copy path --- 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 cfff03140bb6..13e344e48a8b 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