Make bootstrap re-runnable. README edits

This commit is contained in:
Luke Kysow
2017-08-01 22:37:20 -07:00
parent 6281704560
commit 433f8875c3
9 changed files with 93 additions and 66 deletions

View File

@@ -80,10 +80,10 @@ func (g *GithubCommentRenderer) renderProjectResults(pathResults []ProjectResult
if result.Error != nil {
results[result.Path] = g.renderTemplate(errTmpl, struct {
Command string
Error string
Error string
}{
Command: common.Command,
Error: result.Error.Error(),
Error: result.Error.Error(),
})
} else if result.Failure != "" {
results[result.Path] = g.renderTemplate(failureTmpl, struct {