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
1 changed files with 0 additions and 3 deletions

View File

@ -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) {