Skip to content

Commit

Permalink
fix download url for extracts in utility function
Browse files Browse the repository at this point in the history
  • Loading branch information
rpodcast committed May 9, 2024
1 parent 55eb7e2 commit 203e37c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/utils.R
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ get_pointblank_data_extracts <- function(pointblank_object, exports_root_path, d
} else {
tmp_file <- tempfile(pattern = .x)
download.file(
url = paste0(url, glue::glue("/{.x}.rds")),
url = paste0(exports_root_path, glue::glue("{.x}.rds")),
destfile = tmp_file
)
}
Expand Down

0 comments on commit 203e37c

Please sign in to comment.