This is an automated email from the ASF dual-hosted git repository.
aaronmarkham 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 a38278d disable error checking when building old versions (#13725)
a38278d is described below
commit a38278ddebfcc9459d64237086cd7977ec20c70e
Author: Aaron Markham <[email protected]>
AuthorDate: Wed Jan 2 08:42:11 2019 +0100
disable error checking when building old versions (#13725)
---
docs/build_version_doc/build_all_version.sh | 2 ++
1 file changed, 2 insertions(+)
diff --git a/docs/build_version_doc/build_all_version.sh
b/docs/build_version_doc/build_all_version.sh
index 6b8c3cb..3c432bb 100755
--- a/docs/build_version_doc/build_all_version.sh
+++ b/docs/build_version_doc/build_all_version.sh
@@ -122,6 +122,8 @@ function checkout () {
git pull
# master gets warnings as errors for Sphinx builds
OPTS="-W"
+ else
+ OPTS=
fi
git submodule update --init --recursive
cd ..