You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mxnet.apache.org by la...@apache.org on 2021/02/16 21:52:34 UTC

[incubator-mxnet] branch master updated: Fix file path in build_docs (#19901)

This is an automated email from the ASF dual-hosted git repository.

lausen pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/incubator-mxnet.git


The following commit(s) were added to refs/heads/master by this push:
     new d82d19f  Fix file path in build_docs (#19901)
d82d19f is described below

commit d82d19f700baa77ae577906f595b8562749852e8
Author: waytrue17 <52...@users.noreply.github.com>
AuthorDate: Tue Feb 16 13:50:26 2021 -0800

    Fix file path in build_docs (#19901)
    
    Co-authored-by: Wei Chu <we...@amazon.com>
---
 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 34245bb..7bffd41 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