From 083808394a26b7dc24df5b9e92f61a35064b9024 Mon Sep 17 00:00:00 2001 From: ducoterra Date: Tue, 16 Apr 2019 17:18:51 -0400 Subject: [PATCH] update wget --- install.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/install.sh b/install.sh index 6ff71af..0a14d50 100755 --- a/install.sh +++ b/install.sh @@ -44,7 +44,7 @@ echo -e "Install Sqlite3" tput setaf 9 # fetch Sqlite -wget $sqlink sqlite.tar.gz 1> $pylogloc 2>> $pylogloc 3>> $pylogloc +wget -O sqlite.tar.gz $sqlink 1> $pylogloc 2>> $pylogloc 3>> $pylogloc if [ $? -ne 0 ] ; then echo -e "Failed to fetch sqlite, make sure wget is installed and $pylink is what you're after. $pylogmsg" exit 1 @@ -93,7 +93,7 @@ tput setaf 2 echo -e "Installing Python" tput setaf 9 -wget $pylink python.tar.gz 1> $pylogloc 2>> $pylogloc 3>> $pylogloc +wget -O python.tar.gz $pylink 1> $pylogloc 2>> $pylogloc 3>> $pylogloc if [ $? -ne 0 ] ; then echo -e "Failed to fetch python, make sure wget is installed and $pylink is what you're after. $pylogmsg" exit 1