Update check runs with every execution. Update fdw version #304

This commit is contained in:
kai
2021-03-17 20:46:45 +00:00
parent 32ea7b46b4
commit c0f3dafe2c
3 changed files with 6 additions and 2 deletions

View File

@@ -15,6 +15,10 @@ type Runner struct {
shouldRun bool
}
func RunTasks() {
NewRunner().Run()
}
func NewRunner() *Runner {
r := new(Runner)
r.currentState, _ = statefile.LoadState()