Skip to content

Commit

Permalink
fix(brigade.js): shorten the error message (#556)
Browse files Browse the repository at this point in the history
GitHub was failing to update builds on error because the error message
was too long.

Closes #555
  • Loading branch information
technosophos committed Jul 17, 2018
1 parent 13e770f commit 64aab1e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion brigade.js
Expand Up @@ -64,7 +64,7 @@ function build(e, project) {
}
return Promise.resolve(runRelease)
}).catch(err => {
return ghNotify("failure", `failed build ${ e.buildID } ${ err.toString() }`, e, project).run()
return ghNotify("failure", `failed build ${ e.buildID }`, e, project).run()
});
}

Expand Down

0 comments on commit 64aab1e

Please sign in to comment.