Skip to content

Commit

Permalink
change panicf into fatalf (#105)
Browse files Browse the repository at this point in the history
  • Loading branch information
noboruma authored Jul 23, 2024
1 parent ece9753 commit a25fc37
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -64,11 +64,11 @@ func main() {

opts, err := config.ParseOptions()
if err != nil {
log.Panicf("main: failed to parse options: %v", err)
log.Fatalf("main: failed to parse options: %v", err)
}
config, err := cfg.ParseConfig(*opts.ConfigPath)
if err != nil {
log.Panicf("main: failed to parse options: %v", err)
log.Fatalf("main: failed to parse config: %v", err)
}

runnerOpts := runner.RunnerOptions{
Expand Down

0 comments on commit a25fc37

Please sign in to comment.