Merge branch '2.5.x' of https://github.com/danielhjames/Airtime into 2.5.x
This commit is contained in:
commit
52b7dbb226
|
@ -214,6 +214,9 @@
|
||||||
.ui-widget-content .ui-icon {
|
.ui-widget-content .ui-icon {
|
||||||
background-image: url(images/ui-icons_ffffff_256x240.png);
|
background-image: url(images/ui-icons_ffffff_256x240.png);
|
||||||
}
|
}
|
||||||
|
.ui-widget-content .ui-icon-alert {
|
||||||
|
background-image: url(images/ui-icons_ff5d1a_256x240.png);
|
||||||
|
}
|
||||||
.ui-widget-header .ui-icon {
|
.ui-widget-header .ui-icon {
|
||||||
background-image: url(images/ui-icons_ffffff_256x240.png);
|
background-image: url(images/ui-icons_ffffff_256x240.png);
|
||||||
}
|
}
|
||||||
|
|
|
@ -14,12 +14,11 @@ fi
|
||||||
#Check whether version of virtualenv is <= 1.4.8. If so exit install.
|
#Check whether version of virtualenv is <= 1.4.8. If so exit install.
|
||||||
BAD_VERSION="1.4.8"
|
BAD_VERSION="1.4.8"
|
||||||
VERSION=$(virtualenv --version)
|
VERSION=$(virtualenv --version)
|
||||||
NEWEST_VERSION=$(echo -e "$BAD_VERSION\n$VERSION\n'" | sort -t '.' -g | tail -n 1)
|
NEWEST_VERSION=$(echo -e "$BAD_VERSION\n$VERSION\n" | sort -t '.' -V | tail -n 1)
|
||||||
echo -n "Ensuring python-virtualenv version > $BAD_VERSION..."
|
echo -n "Ensuring python-virtualenv version > $BAD_VERSION..."
|
||||||
if [[ "$NEWEST_VERSION" = "$BAD_VERSION" ]]; then
|
if [[ "$NEWEST_VERSION" = "$BAD_VERSION" ]]; then
|
||||||
URL="http://apt.sourcefabric.org/pool/main/p/python-virtualenv/python-virtualenv_1.4.9-3_all.deb"
|
|
||||||
echo "Failed!"
|
echo "Failed!"
|
||||||
echo "You have version $BAD_VERSION or older installed. Please install package at $URL first and then try installing Airtime again."
|
echo "You have version $BAD_VERSION or older installed. Please upgrade python-virtualenv and install Airtime again."
|
||||||
exit 1
|
exit 1
|
||||||
else
|
else
|
||||||
echo "Success!"
|
echo "Success!"
|
||||||
|
|
Loading…
Reference in New Issue