The latest version of PiAware is always installed.

pull/215/head
Joe Prochazka 2016-08-31 11:46:10 -04:00
rodzic ff146b2836
commit 2637b23e4b
3 zmienionych plików z 9 dodań i 6 usunięć

Wyświetl plik

@ -7,6 +7,7 @@ The following is a history of the changes made to this project.
* ADS-B Exchange script now sets up mlat-client to connect to their mlat-server.
* Added the ability to disply either the dump1090-fa or dump1090-mutability map.
* Changed the bash function which retrieves config file variables so it works properly.
* Fixed issue causing a package installation error when PiAware versions change.
## v2.1.0 *(August 30th, 2016)*

Wyświetl plik

@ -102,7 +102,6 @@ else
echo -e "\033[37m"
git clone https://github.com/flightaware/piaware_builder.git
cd $PIAWAREDIR
git checkout ${PIAWAREBRANCH}
fi
## BUILD THE PIAWARE PACKAGE
@ -119,7 +118,14 @@ dpkg-buildpackage -b
echo -e "\033[33m"
echo "Installing the PiAware package..."
echo -e "\033[37m"
sudo dpkg -i $PIAWAREDIR/piaware_${PIAWAREVERSION}_*.deb
sudo dpkg -i $PIAWAREDIR/piaware_*.deb
# Move the .deb package into another directory simply to keep it for historical reasons.
if [ ! -d $PIAWAREDIR/packages ]; then
mkdir $PIAWAREDIR/packages
fi
mv $PIAWAREDIR/piaware_*.deb $PIAWAREDIR/packages/
mv $PIAWAREDIR/piaware_*.changes $PIAWAREDIR/packages/
## CHECK THAT THE PACKAGE INSTALLED

Wyświetl plik

@ -33,10 +33,6 @@
## SOFTWARE VERSIONS
# FlightAware PiAware
PIAWAREVERSION="3.0.4"
PIAWAREBRANCH="master"
# PlaneFinder ADS-B Client
PFCLIENTVERSIONARM="3.4.61"
PFCLIENTVERSIONI386="3.4.61"