Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/torch/distro.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSayak Biswas <sayak90@gmail.com>2016-11-11 19:40:27 +0300
committerSayak Biswas <sayak90@gmail.com>2016-11-11 19:40:27 +0300
commit532a53ad5a66ce9baab3bb87e1fab309fb073310 (patch)
treec0f2c8ec759e1422a09d0fcbede179c31fcda80d /install-deps
parentf913eec4d6ed619c6eda914061bd02068688c5a1 (diff)
For KDE neon users, installation should be similar to Ubuntu
Diffstat (limited to 'install-deps')
-rwxr-xr-xinstall-deps5
1 files changed, 4 insertions, 1 deletions
diff --git a/install-deps b/install-deps
index b417541..5f540d3 100755
--- a/install-deps
+++ b/install-deps
@@ -138,8 +138,11 @@ elif [[ "$(uname)" == 'Linux' ]]; then
elif [[ "$DISTRO" = "debian" ]]; then
distribution="debian"
debian_major_version="$VERSION"
+ elif [[ "$DISTRO" = "neon" ]]; then
+ distribution="ubuntu"
+ ubuntu_major_version="${VERSION%%.*}"
else
- echo '==> Only Ubuntu, elementary OS, Fedora, Archlinux, OpenSUSE, Debian and CentOS distributions are supported.'
+ echo '==> Only Ubuntu, elementary OS, Fedora, Archlinux, OpenSUSE, Debian, CentOS and KDE neon distributions are supported.'
exit 1
fi