1
0
mirror of https://github.com/go-kratos/kratos.git synced 2025-03-17 21:07:54 +02:00

fix modPrefix (#596)

Co-authored-by: ryan <ryan.zhu@cardinfolink.com>
This commit is contained in:
Ryan 2020-12-01 10:17:22 +08:00 committed by GitHub
parent 0f4fa0ad7c
commit 4160e34fb6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -26,7 +26,7 @@ func runNew(ctx *cli.Context) (err error) {
pwd, _ := os.Getwd()
p.path = filepath.Join(pwd, p.Name)
}
p.ModPrefix = modPath(p.path)
p.ModPrefix = strings.ReplaceAll(modPath(p.path), "\\", "/")
// creata a project
if err := create(); err != nil {
return err