fix: cron not running in foreground
continuous-integration/drone/push Build is passing Details

This commit is contained in:
kolaente 2022-01-06 13:05:09 +01:00
parent 0fa49eb44b
commit 9f6620da11
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
1 changed files with 1 additions and 1 deletions

View File

@ -37,5 +37,5 @@ func main() {
if err != nil {
log.Fatalf("Could not create cron job: %s\n", err)
}
cr.Start()
cr.Run()
}