We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a953786 commit 3798e44Copy full SHA for 3798e44
Dangerfile
@@ -221,14 +221,18 @@ else
221
break
222
end
223
224
+ if line.start_with? '[INFO] Download'
225
+ next
226
+ end
227
+
228
line.sub!('[WARNING] ', '')
- errors << line
229
+ errors << line.rstrip
230
231
232
unless errors.empty?
- error_msgs = errors.join()
233
+ error_msgs = errors.join("\n")
234
fail("maven-enforcer-plugin reported about errors. Please, fix them. "\
- "Here is its output:\n```\n#{error_msgs}```")
235
+ "Here is its output:\n```\n#{error_msgs}\n```")
236
237
238
0 commit comments