Skip to content

Commit a6ccf81

Browse files
committed
Fix mismatched quotes
1 parent 01c142b commit a6ccf81

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

repo2docker/buildpacks/_r_base.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ def rstudio_base_scripts(r_version):
4747
fi && \
4848
curl --silent --location --fail ${{RSTUDIO_URL}} > /tmp/rstudio.deb && \
4949
curl --silent --location --fail {shiny_server_url} > /tmp/shiny.deb && \
50-
echo "${{RSTUDIO_HASH}} /tmp/rstudio.deb' | sha256sum -c - && \
50+
echo "${{RSTUDIO_HASH}} /tmp/rstudio.deb" | sha256sum -c - && \
5151
echo '{shiny_sha256sum} /tmp/shiny.deb' | sha256sum -c - && \
5252
apt install -y --no-install-recommends /tmp/rstudio.deb /tmp/shiny.deb && \
5353
rm /tmp/*.deb && \

0 commit comments

Comments
 (0)