Skip to content

Commit 182a7cd

Browse files
committed
feat: catch and log error during help text generation
1 parent 6e048db commit 182a7cd

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

lib/pact/provider/help/write.rb

+2
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,8 @@ def initialize pact_sources, reports_dir
2121
def call
2222
clean_reports_dir
2323
write
24+
rescue StandardError => e
25+
Pact.configuration.error_stream.puts("ERROR: Error generating help output - #{e.class} #{e.message} \n" + e.backtrace.join("\n"))
2426
end
2527

2628
private

0 commit comments

Comments
 (0)