Skip to content

Commit

Permalink
Modify build file to allow default repo package downloading, removes …
Browse files Browse the repository at this point in the history
…dependence on liveness of particular server
  • Loading branch information
alexpeters1208 committed Sep 10, 2024
1 parent a0b70a6 commit 92a3f42
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions R/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -138,7 +138,7 @@ def rClientDoc = Docker.registerDockerTask(project, 'rClientDoc') {
''')
runCommand('''echo "status = tryCatch(" \
" {" \
" install.packages('roxygen2', repos='https://cran.r-project.org'); " \
" install.packages('roxygen2'); " \
" 0" \
" }," \
" error=function(e) 1," \
Expand Down Expand Up @@ -179,7 +179,7 @@ def rClientSite = Docker.registerDockerTask(project, 'rClientSite') {
runCommand("mkdir -p ${prefix}/src/rdeephaven/docs")
runCommand('''echo "status = tryCatch(" \
" {" \
" install.packages('pkgdown', repos='https://cran.r-project.org'); " \
" install.packages('pkgdown'); " \
" 0" \
" }," \
" error=function(e) 1," \
Expand Down

0 comments on commit 92a3f42

Please sign in to comment.