Skip to content

Commit

Permalink
fix lint
Browse files Browse the repository at this point in the history
  • Loading branch information
hwbrzzl committed Dec 31, 2024
1 parent 68f1b3c commit b3de372
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion goravel/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@ import (
"os"

frameworkconsole "github.com/goravel/framework/console"
"github.com/goravel/framework/support/color"

"github.com/goravel/installer/console"
"github.com/goravel/installer/support"
Expand All @@ -19,5 +20,7 @@ func main() {
kernel := &console.Kernel{}

cliApp.Register(kernel.Commands())
cliApp.Run(os.Args, false)
if err := cliApp.Run(os.Args, false); err != nil {
color.Red().Println(err)
}
}

0 comments on commit b3de372

Please sign in to comment.