update python link, sqlite link

This commit is contained in:
ducoterra
2019-04-16 17:15:52 -04:00
parent e3f0427e58
commit 67435af172
2 changed files with 7 additions and 4 deletions

View File

@@ -36,7 +36,6 @@ if [ ! -d $logdir ] ; then
fi;
# install dependencies
packages=(gcc wget nginx make bzip2 openssl libffi-dev libssl-dev libsqlite3-dev zlib1g-dev libbz2-dev libpq-dev);
echo -e "\tRunning apt update";
apt update 1> $aptlogloc 2>> $aptlogloc 3>> $aptlogloc;
for package in ${packages[@]};
@@ -58,7 +57,7 @@ echo -e "Install Sqlite3"
tput setaf 9
# fetch Sqlite
wget https://sqlite.org/2019/sqlite-autoconf-3280000.tar.gz sqlite.tar.gz 1> $pylogloc 2>> $pylogloc 3>> $pylogloc
wget $sqlink sqlite.tar.gz 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