Browse Source

openresty ts to date

master
boB Rudis 4 years ago
parent
commit
e66db1d68a
No known key found for this signature in database GPG Key ID: 1D7529BE14E2BBA9
  1. 2
      R/lighttpd.R

2
R/lighttpd.R

@ -27,7 +27,7 @@ lighttpd_version_history <- function() {
dplyr::filter(stri_detect_regex(vers, "\\.tar\\.gz$")) %>%
dplyr::mutate(vers = stri_replace_all_regex(vers, "(^lighttpd-|\\.tar\\.gz$)", "")) %>%
dplyr::mutate(
ts = lubridate::ymd_hms(ts),
ts = lubridate::ymd_hms(ts) %>% as.Date(),
year = lubridate::year(ts)
) %>%
dplyr::rename(rls_date = ts, rls_year = year)

Loading…
Cancel
Save