Absolute path for setting.CustomConf

tokarchuk/v1.17
Ethan Koenig 8 years ago
parent e9b1b908ee
commit 23d0735f90
  1. 16
      integrations/integration_test.go

@ -60,15 +60,21 @@ func TestMain(m *testing.M) {
} }
func initIntegrationTest() { func initIntegrationTest() {
if setting.CustomConf = os.Getenv("GITEA_CONF"); setting.CustomConf == "" { giteaRoot := os.Getenv("GITEA_ROOT")
fmt.Println("Environment variable $GITEA_CONF not set") if giteaRoot == "" {
fmt.Println("Environment variable $GITEA_ROOT not set")
os.Exit(1) os.Exit(1)
} }
if giteaRoot := os.Getenv("GITEA_ROOT"); giteaRoot == "" { setting.AppPath = path.Join(giteaRoot, "gitea")
fmt.Println("Environment variable $GITEA_ROOT not set")
giteaConf := os.Getenv("GITEA_CONF")
if giteaConf == "" {
fmt.Println("Environment variable $GITEA_CONF not set")
os.Exit(1) os.Exit(1)
} else if !path.IsAbs(giteaConf) {
setting.CustomConf = path.Join(giteaRoot, giteaConf)
} else { } else {
setting.AppPath = path.Join(giteaRoot, "gitea") setting.CustomConf = giteaConf
} }
setting.NewContext() setting.NewContext()

Loading…
Cancel
Save