Skip to content

Commit 8e04095

Browse files
- updated the else if
1 parent 4291459 commit 8e04095

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

main.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -84,7 +84,9 @@ func main() {
8484
if maxprocsError != nil {
8585
log.Error(maxprocsError, "Failed to set GOMAXPROCS")
8686
os.Exit(1)
87-
} else if err := handle(ctx); err != nil {
87+
}
88+
89+
if err := handle(ctx); err != nil {
8890
log.Error(err, "Fatal error")
8991
os.Exit(1)
9092
}

0 commit comments

Comments
 (0)