Merge branch 'master' into contrib-update

This commit is contained in:
Aaron Meihm 2017-07-12 09:58:48 -05:00 коммит произвёл GitHub
Родитель 67636d1aaf 08bcd0bcde
Коммит c215793b0d
1 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -180,8 +180,14 @@ func ReadConfiguration(file string) (conf Configuration, err error) {
}
}
// if trailing slash is missing from API url, add it
if conf.API.URL[len(conf.API.URL)-1] != '/' {
conf.API.URL += "/"
n := len(conf.API.URL)
if n > 1 {
if conf.API.URL[n-1] != '/' {
conf.API.URL += "/"
}
} else {
err = fmt.Errorf("config API URL too short or undefined: len %d", n)
panic(err)
}
err = addTargetMacros(&conf)
if err != nil {