Selaa lähdekoodia

chore: update some logs (#1875)

Kevin Wan 3 vuotta sitten
vanhempi
sitoutus
5451d96a81
2 muutettua tiedostoa jossa 1 lisäystä ja 3 poistoa
  1. 1 1
      tools/goctl/tpl/templates.go
  2. 0 2
      tools/goctl/util/ctx/context.go

+ 1 - 1
tools/goctl/tpl/templates.go

@@ -109,7 +109,7 @@ func cleanTemplates(_ *cobra.Command, _ []string) error {
 		return err
 	}
 
-	fmt.Printf("%s\n", aurora.Green("template are clean!"))
+	fmt.Printf("%s\n", aurora.Green("templates are cleaned!"))
 	return nil
 }
 

+ 0 - 2
tools/goctl/util/ctx/context.go

@@ -2,7 +2,6 @@ package ctx
 
 import (
 	"errors"
-	"fmt"
 	"path/filepath"
 
 	"github.com/zeromicro/go-zero/tools/goctl/rpc/execx"
@@ -32,7 +31,6 @@ func Prepare(workDir string) (*ProjectContext, error) {
 	if err == nil {
 		return ctx, nil
 	}
-	fmt.Printf("get project context from workdir[%s] failed: %s\n", workDir, err)
 
 	name := filepath.Base(workDir)
 	_, err = execx.Run("go mod init "+name, workDir)