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 +}