Skip to content

Commit

Permalink
Merge pull request #41 from KWB-R/try-to-fix-gh-actions
Browse files Browse the repository at this point in the history
Check if target directory exists
  • Loading branch information
mrustl authored Mar 14, 2024
2 parents 036109f + 59152c4 commit 59efcba
Showing 1 changed file with 3 additions and 9 deletions.
12 changes: 3 additions & 9 deletions vignettes/measurement-chains.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -392,16 +392,10 @@ well_op_file <- kwb.nextcloud::list_files(path = paths$well_operation,
full_info = TRUE) %>%
dplyr::filter(lastmodified == max(lastmodified))
file <- well_op_file$file[1]
tdir <- fs::path_norm(paths$download_dir)
xlsx_file <- kwb.nextcloud::download_files(hrefs = well_op_file$href,
target_dir = tdir)
target_dir = paths$export_dir)
if(FALSE) {
well_op_data <- readxl::read_xlsx(path = xlsx_file) %>%
janitor::clean_names() %>%
dplyr::filter(.data$menge_summe_m3 < 2000)
Expand Down Expand Up @@ -431,7 +425,7 @@ tibble::tibble(
well_op_data_meta <- well_op_data %>%
dplyr::bind_cols(separate_name_der_messstelle_gms(well_op_data$name_der_messstelle_gms))
}
```

Expand All @@ -440,7 +434,7 @@ well_op_data_meta <- well_op_data %>%

and upload on cloud.

```{r make_combined_plot,eval = FALSE}
```{r make_combined_plot,eval = TRUE}
well_ids <- c(9,10,13)
pdf_names <- sprintf("mc_and_q_well-%02d.pdf", well_ids)
Expand Down

0 comments on commit 59efcba

Please sign in to comment.