1
0
mirror of https://github.com/astaxie/beego.git synced 2025-06-20 11:30:19 +00:00

Remove a regression on AppPath

The application path is incorrect on Windows with the command line "go run". AppPath is assigned to the temp directory instead the folder project
This commit is contained in:
mlgd
2016-12-09 09:37:10 +01:00
committed by GitHub
parent eba6afd6fb
commit e90f4bee1a

@ -144,9 +144,6 @@ func init() {
if err = parseConfig(appConfigPath); err != nil {
panic(err)
}
if err = os.Chdir(AppPath); err != nil {
panic(err)
}
}
func recoverPanic(ctx *context.Context) {