Skip to content

Commit

Permalink
fix path to download latest shiny-server
Browse files Browse the repository at this point in the history
Download url changed from download3.rstudio.org/ubuntu-18.04/... to download3.rstudio.org/ubuntu-20.04/...  (#904)
  • Loading branch information
stibemueller authored Feb 10, 2025
1 parent 7a650c7 commit 00968c2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/install_shiny_server.sh
Original file line number Diff line number Diff line change
Expand Up @@ -33,10 +33,10 @@ apt_install \
# Install Shiny server

if [ "$SHINY_SERVER_VERSION" = "latest" ]; then
SHINY_SERVER_VERSION=$(wget -qO- https://download3.rstudio.org/ubuntu-18.04/x86_64/VERSION)
SHINY_SERVER_VERSION=$(wget -qO- https://download3.rstudio.org/ubuntu-20.04/x86_64/VERSION)
fi

wget --no-verbose "https://download3.rstudio.org/ubuntu-18.04/x86_64/shiny-server-${SHINY_SERVER_VERSION}-amd64.deb" -O ss-latest.deb
wget --no-verbose "https://download3.rstudio.org/ubuntu-20.04/x86_64/shiny-server-${SHINY_SERVER_VERSION}-amd64.deb" -O ss-latest.deb
gdebi -n ss-latest.deb
rm ss-latest.deb

Expand Down

0 comments on commit 00968c2

Please sign in to comment.