File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
server/autotest_server/testers/r/lib Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -7,6 +7,7 @@ All notable changes to this project will be documented here.
77- Updated docker image to use Ubuntu 24.04 (#668 )
88- Fixed stack installation in Docker environment (#668 )
99- Removed ` click ` from server requirements.txt file (#679 )
10+ - Fixed bug in R tester setup that always triggered reinstallation of R dependencies (#680 )
1011
1112## [ v2.8.3]
1213- Add troubleshooting section talking about Docker Content Trust (DCT) (#653 )
Original file line number Diff line number Diff line change @@ -38,7 +38,7 @@ install_dep <- function(row) {
3838 } else {
3939 remote_type <- NA_character_
4040 }
41- if (! (' stringi' %in% rownames(installed.packages ))) {
41+ if (! (' stringi' %in% rownames(installed.packages() ))) {
4242 install.packages(name , configure.args = " --disable-pkg-config" )
4343 }
4444
You can’t perform that action at this time.
0 commit comments