1
0
mirror of https://github.com/gogf/gf.git synced 2025-04-05 11:18:50 +08:00

cli command exits with code 1 if error (#2645)

This commit is contained in:
John Guo 2023-05-15 15:51:28 +08:00 committed by GitHub
parent bda5d252b2
commit 3c1ded22fd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 8 additions and 2 deletions

View File

@ -143,7 +143,7 @@ func (c cBuild) Index(ctx context.Context, in cBuildInput) (out *cBuildOutput, e
mlog.SetHeaderPrint(true) mlog.SetHeaderPrint(true)
mlog.Debugf(`build input: %+v`, in) mlog.Debugf(`build command input: %+v`, in)
// Necessary check. // Necessary check.
if gproc.SearchBinary("go") == "" { if gproc.SearchBinary("go") == "" {
mlog.Fatalf(`command "go" not found in your environment, please install golang first to proceed this command`) mlog.Fatalf(`command "go" not found in your environment, please install golang first to proceed this command`)

View File

@ -92,6 +92,8 @@ type cDockerInput struct {
type cDockerOutput struct{} type cDockerOutput struct{}
func (c cDocker) Index(ctx context.Context, in cDockerInput) (out *cDockerOutput, err error) { func (c cDocker) Index(ctx context.Context, in cDockerInput) (out *cDockerOutput, err error) {
mlog.Debugf(`docker command input: %+v`, in)
// Necessary check. // Necessary check.
if gproc.SearchBinary("docker") == "" { if gproc.SearchBinary("docker") == "" {
mlog.Fatalf(`command "docker" not found in your environment, please install docker first to proceed this command`) mlog.Fatalf(`command "docker" not found in your environment, please install docker first to proceed this command`)
@ -101,6 +103,7 @@ func (c cDocker) Index(ctx context.Context, in cDockerInput) (out *cDockerOutput
in.Build += " --exit" in.Build += " --exit"
if in.Main != "" { if in.Main != "" {
if err = gproc.ShellRun(ctx, fmt.Sprintf(`gf build %s %s`, in.Main, in.Build)); err != nil { if err = gproc.ShellRun(ctx, fmt.Sprintf(`gf build %s %s`, in.Main, in.Build)); err != nil {
mlog.Debugf(`build binary failed with error: %+v`, err)
return return
} }
} }
@ -108,6 +111,7 @@ func (c cDocker) Index(ctx context.Context, in cDockerInput) (out *cDockerOutput
// Shell executing. // Shell executing.
if in.Shell != "" && gfile.Exists(in.Shell) { if in.Shell != "" && gfile.Exists(in.Shell) {
if err = c.exeDockerShell(ctx, in.Shell); err != nil { if err = c.exeDockerShell(ctx, in.Shell); err != nil {
mlog.Debugf(`build docker failed with error: %+v`, err)
return return
} }
} }

View File

@ -77,7 +77,9 @@ func main() {
} }
err = command.RunWithError(ctx) err = command.RunWithError(ctx)
if err != nil { if err != nil {
panic(err) // Exit with error message and exit code 1.
// It is very important to exit the command process with code 1.
mlog.Fatalf(`%+v`, err)
} }
} }