quiet outputs
This commit is contained in:
@@ -89,7 +89,7 @@ echo "Done."
|
|||||||
# TODO: 1.
|
# TODO: 1.
|
||||||
################################################################################
|
################################################################################
|
||||||
echo "Installing python..."
|
echo "Installing python..."
|
||||||
wget -O - $pylink > $pylogloc
|
wget -q $pylink > $pylogloc
|
||||||
if [ $? -ne 0 ] ; then
|
if [ $? -ne 0 ] ; then
|
||||||
echo "Failed to fetch python, make sure wget is installed and $pylink is what you're after. $pylogmsg"
|
echo "Failed to fetch python, make sure wget is installed and $pylink is what you're after. $pylogmsg"
|
||||||
exit 1
|
exit 1
|
||||||
@@ -109,12 +109,12 @@ if [ $? -ne 0 ] ; then
|
|||||||
echo "./configure failed. $pylogmsg"
|
echo "./configure failed. $pylogmsg"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
make >> $pylogloc
|
make --quiet >> $pylogloc
|
||||||
if [ $? -ne 0 ] ; then
|
if [ $? -ne 0 ] ; then
|
||||||
echo "make failed. $pylogmsg"
|
echo "make failed. $pylogmsg"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
make altinstall >> $pylogloc
|
make --quiet altinstall >> $pylogloc
|
||||||
if [ $? -ne 0 ] ; then
|
if [ $? -ne 0 ] ; then
|
||||||
echo "make altinstall failed. $pylogmsg"
|
echo "make altinstall failed. $pylogmsg"
|
||||||
exit 1
|
exit 1
|
||||||
|
|||||||
Reference in New Issue
Block a user