mirror of
https://github.com/containrrr/watchtower.git
synced 2025-12-13 21:56:38 +01:00
check if schedule len > 0 to prevent collisions
This commit is contained in:
parent
fc739c5ca8
commit
ba5ac33e93
1 changed files with 3 additions and 2 deletions
5
main.go
5
main.go
|
|
@ -66,10 +66,11 @@ func before(c *cli.Context) error {
|
|||
|
||||
pollingSet := c.IsSet("interval")
|
||||
cronSet := c.IsSet("schedule")
|
||||
cronLen := len(c.String("schedule"))
|
||||
|
||||
if pollingSet && cronSet {
|
||||
if pollingSet && cronSet && cronLen > 0 {
|
||||
log.Fatal("Only schedule or interval can be defined, not both.")
|
||||
} else if cronSet {
|
||||
} else if cronSet && cronLen > 0 {
|
||||
scheduleSpec = c.String("schedule")
|
||||
} else {
|
||||
scheduleSpec = "@every " + strconv.Itoa(c.Int("interval")) + "s"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue