hswg: don't eat libasciidoc rendering errors
An unfortunate consequence of the := operator's behaviour. Also, update copyright years.
This commit is contained in:
parent
f9e1f9a244
commit
c3905349b0
2
LICENSE
2
LICENSE
|
@ -1,4 +1,4 @@
|
|||
Copyright (c) 2018, Přemysl Eric Janouch <p@janouch.name>
|
||||
Copyright (c) 2018 - 2021, Přemysl Eric Janouch <p@janouch.name>
|
||||
|
||||
Permission to use, copy, modify, and/or distribute this software for any
|
||||
purpose with or without fee is hereby granted.
|
||||
|
|
|
@ -78,9 +78,9 @@ func Render(r io.Reader, config configuration.Configuration) (
|
|||
|
||||
var doc types.Document
|
||||
if doc, err = parser.ParseDocument(pr, config); err == nil {
|
||||
problems, err := validator.Validate(&doc)
|
||||
if err != nil {
|
||||
fmt.Fprintln(os.Stderr, err)
|
||||
problems, verr := validator.Validate(&doc)
|
||||
if verr != nil {
|
||||
fmt.Fprintln(os.Stderr, verr)
|
||||
}
|
||||
for _, problem := range problems {
|
||||
fmt.Fprintln(os.Stderr, problem.Message)
|
||||
|
|
Loading…
Reference in New Issue