Fix merge of skip check

pull/212/head
Liz Rice 5 years ago committed by GitHub
parent 911e9051dc
commit db962a0ad9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -78,6 +78,7 @@ type Check struct {
// the results.
func (c *Check) Run() {
// If check type is skip, force result to INFO
if c.Type == "skip" {
c.State = INFO
return
@ -89,12 +90,6 @@ func (c *Check) Run() {
return
}
// If check type is skip, force result to INFO.
if c.Type == "skip" {
c.State = INFO
return
}
var out bytes.Buffer
var errmsgs string

Loading…
Cancel
Save