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