Merge pull request #1058 from EHJ-52n/patch-1

Add KDE neon...
This commit is contained in:
Nicole Thomas 2017-04-27 09:26:43 -06:00 committed by GitHub
commit a78c7ff1ec
2 changed files with 3 additions and 1 deletions

View file

@ -259,6 +259,7 @@ Ubuntu and derivatives
- Linux Mint 13/17/18
- Trisquel GNU/Linux 6 (based on Ubuntu 12.04)
- Ubuntu 12.04/14.04/16.04
- KDE neon
Ubuntu Best Effort Support: Non-LTS Releases
********************************************

View file

@ -1266,7 +1266,7 @@ __get_dpkg_architecture() {
#----------------------------------------------------------------------------------------------------------------------
# shellcheck disable=SC2034
__ubuntu_derivatives_translation() {
UBUNTU_DERIVATIVES="(trisquel|linuxmint|linaro|elementary_os)"
UBUNTU_DERIVATIVES="(trisquel|linuxmint|linaro|elementary_os|neon)"
# Mappings
trisquel_6_ubuntu_base="12.04"
linuxmint_13_ubuntu_base="12.04"
@ -1274,6 +1274,7 @@ __ubuntu_derivatives_translation() {
linuxmint_18_ubuntu_base="16.04"
linaro_12_ubuntu_base="12.04"
elementary_os_02_ubuntu_base="12.04"
neon_16_ubuntu_base="16.04"
# Translate Ubuntu derivatives to their base Ubuntu version
match=$(echo "$DISTRO_NAME_L" | egrep ${UBUNTU_DERIVATIVES})