From 7090b371b5dcca6447c4bab9d29a8eca86306903 Mon Sep 17 00:00:00 2001 From: Toni Noble Date: Tue, 26 Oct 2021 10:52:27 -0400 Subject: [PATCH] addressing feedback --- README.md | 2 +- handler.py | 1 + install.sh | 4 +++- 3 files changed, 5 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 518f329..e9457b8 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/handler.py b/handler.py index 82c0603..1973986 100644 --- a/handler.py +++ b/handler.py @@ -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']: diff --git a/install.sh b/install.sh index 502ac1b..a039bfb 100755 --- a/install.sh +++ b/install.sh @@ -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}"