Update bindata.go [CI SKIP]

release/v0.9
Unknwon 8 years ago
parent fc68fb951c
commit 87b408a2e5

File diff suppressed because one or more lines are too long

@ -208,6 +208,7 @@ var (
} `ini:"git.timeout"`
}
// Mirror settings
Mirror struct {
DefaultInterval int
}
@ -516,10 +517,10 @@ func NewContext() {
log.Fatal(4, "Fail to map Cron settings: %v", err)
} else if err = Cfg.Section("git").MapTo(&Git); err != nil {
log.Fatal(4, "Fail to map Git settings: %v", err)
} else if err = Cfg.Section("api").MapTo(&API); err != nil {
log.Fatal(4, "Fail to map API settings: %v", err)
} else if err = Cfg.Section("mirror").MapTo(&Mirror); err != nil {
log.Fatal(4, "Fail to map API settings: %v", err)
} else if err = Cfg.Section("api").MapTo(&API); err != nil {
log.Fatal(4, "Fail to map API settings: %v", err)
}
if Mirror.DefaultInterval <= 0 {

Loading…
Cancel
Save