From e7870c1fd4706174f52a796521382c9342d4373f Mon Sep 17 00:00:00 2001 From: mattip Date: Mon, 6 Jul 2020 06:44:41 +0300 Subject: [PATCH] remove tput, causes errors in CI --- run_python_examples.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/run_python_examples.sh b/run_python_examples.sh index 09f0a1de..491fc7e8 100755 --- a/run_python_examples.sh +++ b/run_python_examples.sh @@ -202,13 +202,8 @@ else fi if [ "" == "$ERRORS" ]; then - [[ "$TERM" != "" ]] && [[ "$TERM" != "dumb" ]] && tput setaf 2 echo "Completed successfully with status $?" else - [[ "$TERM" != "" ]] && [[ "$TERM" != "dumb" ]] && tput setaf 1 echo "Some examples failed:" printf "$ERRORS" fi - -[[ "$TERM" != "" ]] && [[ "$TERM" != "dumb" ]] && tput sgr0 -