Fix platform detection

This commit is contained in:
Scott E. Graves
2019-04-18 22:42:14 -05:00
parent 74c7490575
commit b382ce87c3
4 changed files with 6 additions and 0 deletions

View File

@@ -5,6 +5,7 @@
* Bodhi 5.0.0 * Bodhi 5.0.0
* Debian 9 * Debian 9
* Elementary OS 5.0 * Elementary OS 5.0
* Fedora 28
* Fedora 29 * Fedora 29
* Linux Mint 19 * Linux Mint 19
* Linux Mint 19.1 * Linux Mint 19.1

View File

@@ -14,6 +14,7 @@ Repertory allows you to mount Sia and/or SiaPrime blockchain storage solutions v
* Bodhi 5.0.0 * Bodhi 5.0.0
* Debian 9 * Debian 9
* Elementary OS 5.0 * Elementary OS 5.0
* Fedora 28
* Fedora 29 * Fedora 29
* Linux Mint 19 * Linux Mint 19
* Linux Mint 19.1 * Linux Mint 19.1

View File

@@ -35,6 +35,9 @@ elif [ -f /etc/os-release ]; then
if [ "$VERSION_ID" == "29" ]; then if [ "$VERSION_ID" == "29" ]; then
DISTNAME=fedora DISTNAME=fedora
DISTVER=29 DISTVER=29
elif [ "$VERSION_ID" == "28" ]; then
DISTNAME=fedora
DISTVER=28
fi fi
fi fi
fi fi

View File

@@ -5,6 +5,7 @@ exports.RELEASES_URL = 'https://bitbucket.org/blockstorage/repertory/raw/1.0.0-b
exports.DATA_LOCATIONS = { exports.DATA_LOCATIONS = {
arch: '~/.local/repertory/ui', arch: '~/.local/repertory/ui',
debian9: '~/.local/repertory/ui', debian9: '~/.local/repertory/ui',
fedora28: '~/.local/repertory/ui',
fedora29: '~/.local/repertory/ui', fedora29: '~/.local/repertory/ui',
linux: '~/.local/repertory/ui', linux: '~/.local/repertory/ui',
solus: '~/.local/repertory/ui', solus: '~/.local/repertory/ui',