Merge pull request #1896 from borsothy/ci-status-exit-code

Fixed CI status check exit code.
This commit is contained in:
Mislav Marohnić 2018-10-10 14:11:18 -07:00 коммит произвёл GitHub
Родитель 3c8b674faa 56f1d390e4
Коммит 70a5493539
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 1 добавлений и 3 удалений

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

@ -88,15 +88,13 @@ func ciStatus(cmd *Command, args *Args) {
response, err := gh.FetchCIStatus(project, sha)
utils.Check(err)
state := response.State
state := ""
if len(response.Statuses) > 0 {
for _, status := range response.Statuses {
if checkSeverity(status.State) > checkSeverity(state) {
state = status.State
}
}
} else if len(response.Statuses) == 0 {
state = ""
}
var exitCode int