OpenSUSE Tumbleweed support

This commit is contained in:
Scott E. Graves
2019-07-10 20:30:06 -05:00
parent 459b4dcdb0
commit 9b528a6866
6 changed files with 18 additions and 1 deletions

View File

@@ -6,6 +6,7 @@
* Debian 10
* OpenSUSE Leap 15.0
* OpenSUSE Leap 15.1
* OpenSUSE Tumbleweed
## 1.0.3 ##
* Linux distribution support

View File

@@ -31,6 +31,7 @@ Repertory allows you to mount Sia and/or SiaPrime blockchain storage solutions v
* Linux Mint 19.1
* OpenSUSE Leap 15.0
* OpenSUSE Leap 15.1
* OpenSUSE Tumbleweed
* Solus
* Ubuntu 18.04
* Ubuntu 18.10

View File

@@ -19,7 +19,7 @@ if beginsWith darwin "$OSTYPE"; then
JQ_EXEC=jq-osx-amd64
SHA256_EXEC="shasum -a 256 -b"
else
DISTRO_LIST="arch centos7 debian9 debian10 fedora28 fedora29 fedora30 opensuse15 opensuse15.1 solus ubuntu18.04 ubuntu18.10 ubuntu19.04"
DISTRO_LIST="arch centos7 debian9 debian10 fedora28 fedora29 fedora30 opensuse15 opensuse15.1 solus tumbleweed ubuntu18.04 ubuntu18.10 ubuntu19.04"
OUT_FILE=repertory-ui_${APP_VER}_linux_x86_64.AppImage
BASE64_EXEC="base64 -w0"
JQ_EXEC=jq-linux64

View File

@@ -77,6 +77,9 @@ elif [ -f /etc/os-release ]; then
else
resetDistVer
fi
elif [ "$ID" == "opensuse-tumbleweed" ]; then
DISTNAME=tumbleweed
DISTVER=
else
resetDistVer
fi

View File

@@ -88,6 +88,14 @@
]
}
},
"tumbleweed": {
"1.0.4": {
"sha256": "",
"sig": "",
"urls": [
]
}
},
"ubuntu18.04": {
"1.0.4": {
"sha256": "",
@@ -158,6 +166,9 @@
"solus": [
"1.0.4"
],
"tumbleweed": [
"1.0.4"
],
"ubuntu18.04": [
"1.0.4"
],

View File

@@ -42,6 +42,7 @@ exports.DATA_LOCATIONS = {
opensuse15: '~/.local/repertory/ui',
'opensuse15.1': '~/.local/repertory/ui',
solus: '~/.local/repertory/ui',
tumbleweed: '~/.local/repertory/ui',
'ubuntu18.04': '~/.local/repertory/ui',
'ubuntu18.10': '~/.local/repertory/ui',
'ubuntu19.04': '~/.local/repertory/ui',