From 6e045eff90861e796c0efa2676c01e8c6d29b0f6 Mon Sep 17 00:00:00 2001 From: eitsupi <50911393+eitsupi@users.noreply.github.com> Date: Mon, 7 Oct 2024 22:49:14 +0900 Subject: [PATCH] refactor: remove workaround for old RStudio Sever (#863) Fix #842 --- scripts/install_rstudio.sh | 5 ----- 1 file changed, 5 deletions(-) diff --git a/scripts/install_rstudio.sh b/scripts/install_rstudio.sh index 547ea381..c6ab0099 100755 --- a/scripts/install_rstudio.sh +++ b/scripts/install_rstudio.sh @@ -51,11 +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 - if [ "$RSTUDIO_VERSION" = "stable" ] || [ "$RSTUDIO_VERSION" = "preview" ] || [ "$RSTUDIO_VERSION" = "daily" ]; then if [ "$UBUNTU_CODENAME" = "bionic" ]; then UBUNTU_CODENAME="focal"