Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions Changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ All notable changes to this project will be documented here.
- Updated docker image to use Ubuntu 24.04 (#668)
- Fixed stack installation in Docker environment (#668)
- Removed `click` from server requirements.txt file (#679)
- Fixed bug in R tester setup that always triggered reinstallation of R dependencies (#680)

## [v2.8.3]
- Add troubleshooting section talking about Docker Content Trust (DCT) (#653)
Expand Down
2 changes: 1 addition & 1 deletion server/autotest_server/testers/r/lib/r_tester_setup.R
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ install_dep <- function(row) {
} else {
remote_type <- NA_character_
}
if (!('stringi' %in% rownames(installed.packages))) {
if (!('stringi' %in% rownames(installed.packages()))) {
install.packages(name, configure.args="--disable-pkg-config")
}

Expand Down