Use system or default TZ env var
All checks were successful
continuous-integration/drone/tag Build is passing

This commit is contained in:
nemunaire 2022-12-23 22:32:11 +01:00
commit 2c146f5615
5 changed files with 4 additions and 7 deletions

View file

@ -17,7 +17,6 @@ func (c *Config) declareFlags() {
flag.StringVar(&c.ActionsDir, "actions-dir", c.ActionsDir, "Path to the directory containing the actions")
flag.StringVar(&c.RoutinesDir, "routines-dir", c.RoutinesDir, "Path to the directory containing the routines")
flag.IntVar(&c.SampleRate, "samplerate", c.SampleRate, "Samplerate for unifying output stream")
flag.Var(&c.Timezone, "timezone", "Timezone to use when dealing with times")
// Others flags are declared in some other files when they need specials configurations
}