Skip to content

Commit

Permalink
Update test_fredi.yml
Browse files Browse the repository at this point in the history
Corrected line referring to undefined variable that contains a logical value indicating whether the path for saving results exists
  • Loading branch information
knoiva-indecon committed Nov 5, 2024
1 parent 4af3c4d commit c93af21
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion .github/workflows/test_fredi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,8 @@ jobs:
oFileRef <- oPath0 |> file.path("refResults.rda")
### Check if path exists and, if not, create it
if(!exists0) oPath0 |> dir.create(recursive = TRUE)
exists0 <- oPath0 |> dir.exists()
if(!exists0) oPath0 |> dir.create(recursive=TRUE)
###### Action Arguments ######
urlRepo <- "https://github.com/USEPA/FrEDI"
Expand Down

0 comments on commit c93af21

Please sign in to comment.