Skip to content

Commit

Permalink
Merge pull request #1293 from yamaton/fix-install-rstudio
Browse files Browse the repository at this point in the history
Fix rstudio-build selection
  • Loading branch information
yuvipanda authored Jul 14, 2023
2 parents e0609ad + 6a0d76a commit df111a0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion repo2docker/buildpacks/_r_base.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ def rstudio_base_scripts(r_version):
# which will upgrade the installed version of R, undoing our pinned version
rf"""
apt-get update > /dev/null && \
if apt-cache search libssl3 > /dev/null; then \
if apt-cache search libssl3 | grep -q libssl3; then \
RSTUDIO_URL="{rstudio_openssl3_url}" ;\
RSTUDIO_HASH="{rstudio_openssl3_sha256sum}" ;\
else \
Expand Down

0 comments on commit df111a0

Please sign in to comment.