Skip to content

Commit

Permalink
Added printing to GHA to debug behavior of the linux runner
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewherren committed Jun 17, 2024
1 parent b945b58 commit 7d1bf3e
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions cran-bootstrap.R
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ pkg_core_files_dst <- file.path(cran_dir, pkg_core_files)
# Handle tests separately (move from test/r/ folder to tests/ folder)
test_files_src <- list.files("test/r", recursive = TRUE, full.names = TRUE)
test_files_dst <- file.path(cran_dir, gsub("test/r", "tests", test_files_src))
cat("Test files source: ", paste(test_files_src, "\n"))
cat("Test files destination: ", paste(test_files_dst, "\n"))
pkg_core_files <- c(pkg_core_files, test_files_src)
pkg_core_files_dst <- c(pkg_core_files_dst, test_files_dst)
if (all(file.exists(pkg_core_files))) {
Expand Down

0 comments on commit 7d1bf3e

Please sign in to comment.