Skip to content

Commit cf88709

Browse files
authored
Fixed bug in R tester setup that always triggered reinstallation of R dependencies (#680)
1 parent 465807e commit cf88709

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

Changelog.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff 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)

server/autotest_server/testers/r/lib/r_tester_setup.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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

0 commit comments

Comments
 (0)