Skip to content

Commit

Permalink
Make the path absolute
Browse files Browse the repository at this point in the history
  • Loading branch information
nealrichardson committed Apr 11, 2024
1 parent 23a4f15 commit 64d6f4e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions R/utils-ci.R
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,8 @@ clean_test_env <- function(compose_file_path = system.file("ci/test-connect.yml"

determine_license_env <- function(license) {
if (fs::file_exists(license) && fs::path_ext(license) == "lic") {
# Docker needs this to be an absolute path
license <- fs::path_abs(license)
cat_line("determine_license: looks like a license file")
return(list(
type = "file",
Expand Down

0 comments on commit 64d6f4e

Please sign in to comment.