From dd884ba7a35961cb3b5c9299af17961a42b50904 Mon Sep 17 00:00:00 2001 From: ducoterra Date: Sun, 16 Sep 2018 14:25:09 -0400 Subject: [PATCH] quiet outputs --- install.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/install.sh b/install.sh index e5b5e29..daeaaa9 100644 --- a/install.sh +++ b/install.sh @@ -89,7 +89,7 @@ echo "Done." # TODO: 1. ################################################################################ echo "Installing python..." -wget -O - $pylink > $pylogloc +wget -q $pylink > $pylogloc if [ $? -ne 0 ] ; then echo "Failed to fetch python, make sure wget is installed and $pylink is what you're after. $pylogmsg" exit 1 @@ -109,12 +109,12 @@ if [ $? -ne 0 ] ; then echo "./configure failed. $pylogmsg" exit 1 fi -make >> $pylogloc +make --quiet >> $pylogloc if [ $? -ne 0 ] ; then echo "make failed. $pylogmsg" exit 1 fi -make altinstall >> $pylogloc +make --quiet altinstall >> $pylogloc if [ $? -ne 0 ] ; then echo "make altinstall failed. $pylogmsg" exit 1