Skip to content

Commit

Permalink
fix(runner): return true if no cfg path in shouldCron
Browse files Browse the repository at this point in the history
  • Loading branch information
dwisiswant0 committed Oct 2, 2023
1 parent 1d8d980 commit d68d7af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/runner/utils.go
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ func isReachable(inputURL string, timeout time.Duration) bool {

func (r *Runner) shouldCron() bool {
if r.Options.Config.Path == "" {
return false
return true
}

opt := r.telerOpts
Expand Down

0 comments on commit d68d7af

Please sign in to comment.