Skip to content

Commit

Permalink
Mark regex as fixed (#16)
Browse files Browse the repository at this point in the history
  • Loading branch information
chartgerink committed Jan 16, 2024
1 parent 50c2b67 commit e22abd5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion R/extract_min_r_version.R
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ extract_min_r_version <- function(path = ".") {

file.path(path, "DESCRIPTION") |>
read.dcf("Depends") |>
strsplit(",") |>
strsplit(",", fixed = TRUE) |>
unlist() |>
trimws() |>
(\(x) grep("R ", x, value = TRUE, fixed = TRUE))() |>
Expand Down

0 comments on commit e22abd5

Please sign in to comment.