From 785d98ce8236811ca34d83f88cebad1d4d2c8b15 Mon Sep 17 00:00:00 2001 From: Aaron Markham Date: Thu, 30 Aug 2018 10:24:07 -0700 Subject: [PATCH 1/2] fixed checkout bug; fixed echo statement --- docs/build_version_doc/build_all_version.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/build_version_doc/build_all_version.sh b/docs/build_version_doc/build_all_version.sh index d36f1f5edc64..350c75b084b7 100755 --- a/docs/build_version_doc/build_all_version.sh +++ b/docs/build_version_doc/build_all_version.sh @@ -114,7 +114,7 @@ function checkout () { # Overriding configs later will cause a conflict here, so stashing... git stash # Fails to checkout if not available locally, so try upstream - git checkout "$repo_folder" || git branch $repo_folder "upstream/$repo_folder" + git checkout "$repo_folder" || git branch $repo_folder "upstream/$repo_folder" && git checkout "$repo_folder" || exit 1 if [ $tag == 'master' ]; then git pull fi @@ -174,4 +174,4 @@ done echo "Now you may want to run update_all_version.sh to create the production layout with the versions dropdown and other per-version corrections." echo "The following pattern is recommended (tags, default tag, url base):" -echo "./update_all_version.sh "$tags_to_display " master http://mxnet.incubator.apache.org/" +echo "./update_all_version.sh \"$2\" master http://mxnet.incubator.apache.org/" From 4a339a67ade7a6b581dbdf8e1e417bd54c3f269b Mon Sep 17 00:00:00 2001 From: Aaron Markham Date: Thu, 30 Aug 2018 14:16:48 -0700 Subject: [PATCH 2/2] turning off clojure docs for v1.2.0 --- docs/settings.ini | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/settings.ini b/docs/settings.ini index f999b3efde23..b8e486e58e87 100644 --- a/docs/settings.ini +++ b/docs/settings.ini @@ -14,7 +14,7 @@ r_docs = 0 scala_docs = 1 [document_sets_v1.2.0] -clojure_docs = 1 +clojure_docs = 0 doxygen_docs = 1 r_docs = 0 scala_docs = 1