Skip to content

Commit 3a47b1f

Browse files
committed
fix(builder): no error return
1 parent 8528389 commit 3a47b1f

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

boot.go

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -132,5 +132,7 @@ func main() {
132132
},
133133
}
134134

135-
app.Run(os.Args)
135+
if err := app.Run(os.Args); err != nil {
136+
log.Fatal(err)
137+
}
136138
}

0 commit comments

Comments
 (0)