From e59db30d9630566bdbc6e12c8654cdb0ed010e8d Mon Sep 17 00:00:00 2001 From: Darren Schroeder <343840+fdncred@users.noreply.github.com> Date: Sat, 26 Jun 2021 17:54:13 -0500 Subject: [PATCH] update maintainers --- maintainer_time.nu | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/maintainer_time.nu b/maintainer_time.nu index 7afd7c7..67b1a88 100644 --- a/maintainer_time.nu +++ b/maintainer_time.nu @@ -1,9 +1,18 @@ let m_table = ( - [['name', 'tz', 'time']; ['andres' 'US/Eastern' ' '] ['fdncred' 'US/Central' ' '] ['gedge' 'US/Eastern' ' '] ['jturner' 'NZ' ' '] ['wycats' 'US/Pacific' ' ']] + [ + ['name', 'tz', 'time']; + ['andres' 'US/Eastern' ' '] + ['fdncred' 'US/Central' ' '] + ['gedge' 'US/Eastern' ' '] + ['jturner' 'NZ' ' '] + ['wycats' 'US/Pacific' ' '] + ['kubouch' 'Europe/Helsinki' ' '] + ['elferherrera' 'Europe/London' ' '] + ] ) let now = (date now) $m_table | update time { each { |name| $now | date to-timezone ($name | get tz) | date format '%c' } -} \ No newline at end of file +}