2-tools: Make jessie+ condition actually jessie+

This commit is contained in:
T. Joseph Carter 2016-04-10 01:38:10 -07:00
parent 4d1b5db5e3
commit 938db3c46b

View File

@ -120,7 +120,7 @@ if ! hash unar &> /dev/null; then
fi
# jessie and later: Just use the unar package
if [[ $debianName == "jessie" ]]; then
if [[ $debianMajor -ge 8 ]]; then
sudo apt-get -y install unar
sudo apt-get clean
fi