From a7f6d4675b420ed72ba9000b11296e35e9fc6d48 Mon Sep 17 00:00:00 2001 From: EHJ-52n Date: Wed, 26 Apr 2017 10:01:29 +0200 Subject: [PATCH] Add KDE neon... ...ubuntu base version to __ubuntu_derivatives_translation() --- bootstrap-salt.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/bootstrap-salt.sh b/bootstrap-salt.sh index 933c653..4233bce 100755 --- a/bootstrap-salt.sh +++ b/bootstrap-salt.sh @@ -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})