Skip to content

Commit

Permalink
Remove references to the CRAN env var from scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
eitsupi committed Jun 29, 2021
1 parent 865849a commit b5469fc
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions scripts/install_tidyverse.sh
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ apt-get update -qq && apt-get -y --no-install-recommends install \
unixodbc-dev && \
rm -rf /var/lib/apt/lists/*

install2.r --error --skipinstalled -r $CRAN -n $NCPUS \
install2.r --error --skipinstalled -n $NCPUS \
tidyverse \
devtools \
rmarkdown \
Expand All @@ -27,7 +27,7 @@ install2.r --error --skipinstalled -r $CRAN -n $NCPUS \
gert

## dplyr database backends
install2.r --error --skipinstalled -r $CRAN -n $NCPUS \
install2.r --error --skipinstalled -n $NCPUS \
arrow \
dbplyr \
DBI \
Expand All @@ -40,6 +40,6 @@ install2.r --error --skipinstalled -r $CRAN -n $NCPUS \
fst

## a bridge to far? -- brings in another 60 packages
# install2.r --error --skipinstalled -r $CRAN -n $NCPUS tidymodels
# install2.r --error --skipinstalled -n $NCPUS tidymodels

rm -rf /tmp/downloaded_packages
6 changes: 3 additions & 3 deletions scripts/install_verse.sh
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ fi
# So: we can build the redland package bindings and then swap back to libcurl-openssl-dev... (ick)
# explicitly install runtime library sub-deps of librdf0-dev so they are not auto-removed.
apt-get install -y librdf0-dev
install2.r --error --skipinstalled -r $CRAN redland
install2.r --error --skipinstalled -r redland
apt-get install -y \
libcurl4-openssl-dev \
libxslt-dev \
Expand All @@ -70,8 +70,8 @@ wget "https://travis-bin.yihui.name/texlive-local.deb" \
## Install texlive
/rocker_scripts/install_texlive.sh

install2.r --error -r $CRAN --skipinstalled tinytex
install2.r --error --deps TRUE -r $CRAN --skipinstalled \
install2.r --error -r --skipinstalled tinytex
install2.r --error --deps TRUE -r --skipinstalled \
blogdown bookdown rticles rmdshower rJava xaringan

rm -rf /tmp/downloaded_packages
Expand Down

0 comments on commit b5469fc

Please sign in to comment.