Parcourir la source

rewrite (#194)

Co-authored-by: kim <xutao@xiaoheiban.cn>
kingxt il y a 4 ans
Parent
commit
f32c6a9b28
1 fichiers modifiés avec 3 ajouts et 3 suppressions
  1. 3 3
      tools/goctl/api/new/newservice.go

+ 3 - 3
tools/goctl/api/new/newservice.go

@@ -27,9 +27,9 @@ service {{.name}}-api {
 
 func NewService(c *cli.Context) error {
 	args := c.Args()
-	dirName := "greet"
-	if len(args) > 0 {
-		dirName = args.First()
+	dirName := args.First()
+	if len(dirName) == 0 {
+		dirName = "greet"
 	}
 
 	abs, err := filepath.Abs(dirName)