Skip to content

Commit

Permalink
fix: HTMLProofer calls exit on failure, fix ignoring proofer errors
Browse files Browse the repository at this point in the history
  • Loading branch information
doudou committed Feb 6, 2023
1 parent c53267a commit d1d112b
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion config.rb
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,8 @@ def load_svg(file)
ignore_urls: [/rubydoc|gazebosim/],
url_ignore: [/rubydoc|gazebosim/] }
).run
rescue RuntimeError => e
rescue SystemExit => e
# HTMLProofer calls exit on failure (!)
puts e
end
end
Expand Down

0 comments on commit d1d112b

Please sign in to comment.