bump(github.com/robfig/cron): 783cfcb01fb00c48f740c9de79122bd410294149

This commit is contained in:
Maciej Szulik
2017-03-10 12:35:00 +01:00
parent 6522344bb0
commit 2fe190f838
4 changed files with 158 additions and 79 deletions

View File

@@ -151,7 +151,6 @@ func dayMatches(s *SpecSchedule, t time.Time) bool {
domMatch bool = 1<<uint(t.Day())&s.Dom > 0
dowMatch bool = 1<<uint(t.Weekday())&s.Dow > 0
)
if s.Dom&starBit > 0 || s.Dow&starBit > 0 {
return domMatch && dowMatch
}