diff --git a/CHANGELOG.md b/CHANGELOG.md index 87c3dac..ddc0d18 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,8 @@ * \#27: Implement Bitbucket backup download location * \#28: Fix Linux upgrade * Additional Linux distribution support: - * OpenSUSE Leap 15 + * Debian 10 + * OpenSUSE Leap 15.0 * OpenSUSE Leap 15.1 ## 1.0.3 ## diff --git a/README.md b/README.md index 7054a5c..c436c3c 100644 --- a/README.md +++ b/README.md @@ -22,13 +22,14 @@ Repertory allows you to mount Sia and/or SiaPrime blockchain storage solutions v * Bodhi 5.0.0 * CentOS 7 * Debian 9 + * Debian 10 * Elementary OS 5.0 * Fedora 28 * Fedora 29 * Fedora 30 * Linux Mint 19 * Linux Mint 19.1 - * OpenSUSE Leap 15 + * OpenSUSE Leap 15.0 * OpenSUSE Leap 15.1 * Solus * Ubuntu 18.04 diff --git a/public/detect_linux.sh b/public/detect_linux.sh index edbccdd..0c9945e 100644 --- a/public/detect_linux.sh +++ b/public/detect_linux.sh @@ -59,7 +59,9 @@ elif [ -f /etc/debian_version ]; then DISTNAME=debian DISTVER=$(head -1 /etc/debian_version|awk -F. '{print $1}') if [ "$DISTVER" != "9" ]; then - resetDistVer + if [ "$DISTVER" != "10" ]; then + resetDistVer + fi fi elif [ -f /etc/os-release ]; then . /etc/os-release diff --git a/src/constants.js b/src/constants.js index ee65d9c..4e1c147 100644 --- a/src/constants.js +++ b/src/constants.js @@ -34,6 +34,7 @@ exports.DATA_LOCATIONS = { arch: '~/.local/repertory/ui', centos7: '~/.local/repertory/ui', debian9: '~/.local/repertory/ui', + debian10: '~/.local/repertory/ui', fedora28: '~/.local/repertory/ui', fedora29: '~/.local/repertory/ui', fedora30: '~/.local/repertory/ui',