addressing feedback
This commit is contained in:
parent
4cb58f5fe2
commit
7090b371b5
3 changed files with 5 additions and 2 deletions
|
|
@ -21,7 +21,7 @@ R binaries are built for the following Linux operating systems:
|
|||
- Ubuntu 16.04, 18.04, 20.04
|
||||
- Debian 9, 10
|
||||
- CentOS / Red Hat Enterprise Linux 7, 8
|
||||
- openSUSE 42.3, 15
|
||||
- openSUSE 42.3, 15, 15.3
|
||||
- SUSE Linux Enterprise 12, 15
|
||||
|
||||
## Quick Installation
|
||||
|
|
|
|||
|
|
@ -133,6 +133,7 @@ def queue_builds(event, context):
|
|||
'ubuntu-1804',
|
||||
'opensuse-15',
|
||||
'opensuse-152',
|
||||
'opensuse-153',
|
||||
'centos-8',
|
||||
'debian-10',
|
||||
] and version in ['3.3.0', '3.3.1', '3.3.2']:
|
||||
|
|
|
|||
|
|
@ -177,7 +177,9 @@ download_url () {
|
|||
echo "${CDN_URL}/opensuse-42/pkgs/${name}"
|
||||
;;
|
||||
"LEAP15" | "SLES15")
|
||||
if [ "${ver}" -ge 152 ]; then
|
||||
if [ "${ver}" -ge 153 ]; then
|
||||
echo "${CDN_URL}/opensuse-153/pkgs/${name}"
|
||||
elif [ "${ver} -eq 152 ]; then
|
||||
echo "${CDN_URL}/opensuse-152/pkgs/${name}"
|
||||
else
|
||||
echo "${CDN_URL}/opensuse-15/pkgs/${name}"
|
||||
|
|
|
|||
Loading…
Reference in a new issue