From 3931573f2bdb542ff4299bd548cab3458c3b0c99 Mon Sep 17 00:00:00 2001 From: DennyZhang Date: Fri, 11 Oct 2013 00:12:22 -0500 Subject: [PATCH] mute useless console output, when run ./stack.sh Run ./stack.sh will dump ~400 lines of information, because of tar xvfz pip-*.tar.gz, and python setup.py install. We'd better mute stdout for the two steps, to make console cleaner Change-Id: Icf87947e020acb48d8cbe4cdcc1641f060e50f6d --- tools/install_pip.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/install_pip.sh b/tools/install_pip.sh index 940bd8c84a..455323e6fa 100755 --- a/tools/install_pip.sh +++ b/tools/install_pip.sh @@ -72,9 +72,9 @@ function install_get_pip() { function install_pip_tarball() { (cd $FILES; \ curl -O $PIP_TAR_URL; \ - tar xvfz pip-$INSTALL_PIP_VERSION.tar.gz; \ + tar xvfz pip-$INSTALL_PIP_VERSION.tar.gz 1>/dev/null; \ cd pip-$INSTALL_PIP_VERSION; \ - sudo python setup.py install; \ + sudo python setup.py install 1>/dev/null; \ ) }