quiet outputs

This commit is contained in:
ducoterra
2018-09-16 14:25:09 -04:00
parent 10b5a85786
commit dd884ba7a3

View File

@@ -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