Skip to content

Commit

Permalink
Merge pull request #310 from bluejack2000/symbolic-links
Browse files Browse the repository at this point in the history
[JENKINS-75123] Fix inverted logic of `skipSymbolicLinks`
  • Loading branch information
uhafner authored Jan 14, 2025
2 parents de99c1a + 1648951 commit 6b7229b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -494,7 +494,7 @@ private Map<Parser, List<ModuleNode>> recordCoverageResults(final Run<?, ?> run,

try {
FileVisitorResult<ModuleNode> result = workspace.act(
new CoverageReportScanner(parser, expandedPattern, "UTF-8", isSkipSymbolicLinks(),
new CoverageReportScanner(parser, expandedPattern, "UTF-8", !isSkipSymbolicLinks(),
ignoreErrors()));
log.merge(result.getLog());

Expand Down

1 comment on commit 6b7229b

@neerajmanivarnan
Copy link

@neerajmanivarnan neerajmanivarnan commented on 6b7229b Jan 18, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Hey! I am learning the codebase. How does negating the value of the parameter solve the issue? I have read the issue in Jira.

Please sign in to comment.