1
0
의 미러 https://github.com/beego/bee.git synced 2025-07-17 18:22:17 +00:00
This commit is contained in:
astaxie
2013-06-26 00:00:10 +08:00
부모 e96f207991
커밋 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
}
}