File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -84,16 +84,16 @@ jobs:
8484 ls -lah ${PIP_CACHE_DIR} || echo "pip cache dir not found"
8585
8686 echo "=== Package count in renv cache before restore ==="
87- Rscript -e " cat(length(list.files(Sys.getenv(\' RENV_PATHS_CACHE\' ), recursive=TRUE)), \' packages in cache\n\')"
87+ Rscript -e \' cat(length(list.files(Sys.getenv(" RENV_PATHS_CACHE" ), recursive=TRUE)), " packages in cache\n")\'
8888
8989 # Restore R packages from project root
9090 if [ -f "/project/renv.lock" ]; then
9191 echo "=== Restoring R packages with renv ==="
92- Rscript -e " renv::restore(project = \' /project\' , prompt = FALSE)"
92+ Rscript -e \' renv::restore(project = " /project" , prompt = FALSE)\'
9393 fi
9494
9595 echo "=== Package count in renv cache after restore ==="
96- Rscript -e " cat(length(list.files(Sys.getenv(\' RENV_PATHS_CACHE\' ), recursive=TRUE)), \' packages in cache\n\')"
96+ Rscript -e \' cat(length(list.files(Sys.getenv(" RENV_PATHS_CACHE" ), recursive=TRUE)), " packages in cache\n")\'
9797
9898 # Restore Python packages
9999 if [ -f "/project/requirements.txt" ]; then
You can’t perform that action at this time.
0 commit comments