From 57bfcd313136e85167b0158e7e0af80b82deddbf Mon Sep 17 00:00:00 2001 From: eitsupi <50911393+eitsupi@users.noreply.github.com> Date: Tue, 8 Oct 2024 23:27:31 +0900 Subject: [PATCH 1/2] Revert "refactor: remove workaround for old RStudio Sever (#863)" This reverts commit 6e045eff90861e796c0efa2676c01e8c6d29b0f6. --- scripts/install_rstudio.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/install_rstudio.sh b/scripts/install_rstudio.sh index c6ab0099..547ea381 100755 --- a/scripts/install_rstudio.sh +++ b/scripts/install_rstudio.sh @@ -51,6 +51,11 @@ if [ "$UBUNTU_CODENAME" = "focal" ]; then UBUNTU_CODENAME="bionic" fi +# TODO: remove this workaround for Ubuntu 24.04 +if [ "$UBUNTU_CODENAME" = "noble" ]; then + UBUNTU_CODENAME="jammy" +fi + if [ "$RSTUDIO_VERSION" = "stable" ] || [ "$RSTUDIO_VERSION" = "preview" ] || [ "$RSTUDIO_VERSION" = "daily" ]; then if [ "$UBUNTU_CODENAME" = "bionic" ]; then UBUNTU_CODENAME="focal" From c302011d4453e456b9e4e26e7e09d096bde1a875 Mon Sep 17 00:00:00 2001 From: eitsupi <50911393+eitsupi@users.noreply.github.com> Date: Tue, 8 Oct 2024 23:29:42 +0900 Subject: [PATCH 2/2] remove comment --- scripts/install_rstudio.sh | 1 - 1 file changed, 1 deletion(-) diff --git a/scripts/install_rstudio.sh b/scripts/install_rstudio.sh index 547ea381..4986b7c4 100755 --- a/scripts/install_rstudio.sh +++ b/scripts/install_rstudio.sh @@ -51,7 +51,6 @@ if [ "$UBUNTU_CODENAME" = "focal" ]; then UBUNTU_CODENAME="bionic" fi -# TODO: remove this workaround for Ubuntu 24.04 if [ "$UBUNTU_CODENAME" = "noble" ]; then UBUNTU_CODENAME="jammy" fi