mirror of
https://github.com/beego/bee.git
synced 2024-11-21 13:40:53 +00:00
fix #6
This commit is contained in:
parent
e96f207991
commit
19a7fc4612
@ -57,7 +57,7 @@ func createapp(cmd *Command, args []string) {
|
||||
wg = wg + `\src`
|
||||
if strings.HasPrefix(crupath, wg) {
|
||||
haspath = true
|
||||
appsrcpath = path.Join(strings.TrimLeft(crupath, wg), args[0])
|
||||
appsrcpath = path.Join(strings.TrimPrefix(crupath, wg), args[0])
|
||||
break
|
||||
}
|
||||
}
|
||||
@ -68,7 +68,7 @@ func createapp(cmd *Command, args []string) {
|
||||
for _, wg := range lgopath {
|
||||
if strings.HasPrefix(crupath, path.Join(wg, "src")) {
|
||||
haspath = true
|
||||
appsrcpath = path.Join(strings.TrimLeft(crupath, path.Join(wg, "src")), args[0])
|
||||
appsrcpath = path.Join(strings.TrimPrefix(crupath, path.Join(wg, "src")), args[0])
|
||||
break
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user