Skip to content

Commit 27b9580

Browse files
authored
install remotes package (#364)
1 parent d786536 commit 27b9580

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

spark/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@ RUN --mount=type=secret,id=github_token \
3535
if command -v R; then \
3636
/rocker_scripts/install_tidyverse.sh && \
3737
export GITHUB_PAT=`cat /run/secrets/github_token` && \
38-
R -e "install.packages(c('sparklyr', 'arrow'))" && \
38+
R -e "install.packages(c('remotes', 'sparklyr', 'arrow'))" && \
3939
R -e "remotes::install_github('apache/spark@v${SPARK_VERSION}', subdir='R/pkg')"; \
4040
fi && \
4141
# Fix user permissions

vscode/scripts/install-vscode-extensions.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ if command -v R &> /dev/null; then
7070
for extension in "${r_extensions[@]}"; do
7171
install_extension $extension
7272
done
73-
R -e "install.packages(c('languageserver', 'rmarkdown', 'httpgd'))"
73+
R -e "install.packages(c('remotes', 'languageserver', 'rmarkdown', 'httpgd'))"
7474
R -e "remotes::install_github('ManuelHentschel/vscDebugger')"
7575
pip install radian
7676
r_path=$(which radian)

0 commit comments

Comments
 (0)