You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@tvm.apache.org by ju...@apache.org on 2021/01/14 18:41:17 UTC

[tvm] branch main updated: switch to more portable bash pipeline syntax (#7274)

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

junrushao pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tvm.git


The following commit(s) were added to refs/heads/main by this push:
     new bb6c26b  switch to more portable bash pipeline syntax (#7274)
bb6c26b is described below

commit bb6c26beb213810cdc3f9c6837af890142aaaa9e
Author: Andrew Reusch <ar...@octoml.ai>
AuthorDate: Thu Jan 14 10:41:03 2021 -0800

    switch to more portable bash pipeline syntax (#7274)
---
 tests/scripts/task_sphinx_precheck.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/scripts/task_sphinx_precheck.sh b/tests/scripts/task_sphinx_precheck.sh
index fd67b0a..894f747 100755
--- a/tests/scripts/task_sphinx_precheck.sh
+++ b/tests/scripts/task_sphinx_precheck.sh
@@ -36,7 +36,7 @@ make cython3
 echo "PreCheck sphinx doc generation WARNINGS.."
 cd docs
 make clean
-TVM_TUTORIAL_EXEC_PATTERN=none make html |& tee /tmp/$$.log.txt
+TVM_TUTORIAL_EXEC_PATTERN=none make html 2>1 | tee /tmp/$$.log.txt
 
 grep -v -E "__mro__|UserWarning|FutureWarning|tensorflow|Keras|pytorch|TensorFlow|403" < /tmp/$$.log.txt > /tmp/$$.logclean.txt || true
 echo "---------Sphinx Log----------"