repochecker: Update documentation URL
This commit is contained in:
parent
78189aab37
commit
d8458e5b49
2 changed files with 3 additions and 3 deletions
|
|
@ -17,7 +17,7 @@ func init() {
|
|||
}
|
||||
|
||||
func checkUpdate() {
|
||||
res, err := http.Get("https://srs.nemunai.re/repochecker.version")
|
||||
res, err := http.Get("https://fic.srs.epita.fr/repochecker.version")
|
||||
if err == nil {
|
||||
defer res.Body.Close()
|
||||
dec := json.NewDecoder(res.Body)
|
||||
|
|
@ -25,7 +25,7 @@ func checkUpdate() {
|
|||
var v int
|
||||
if err := dec.Decode(&v); err == io.EOF || err == nil {
|
||||
if v > version {
|
||||
log.Println("Your repochecker version is outdated, please update it:\n https://srs.nemunai.re/fic-binaries/")
|
||||
log.Println("Your repochecker version is outdated, please update it:\n https://fic.srs.epita.fr/fic-binaries/")
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Reference in a new issue