Skip to content

Commit

Permalink
Fix ProjectOutFolderPath processing (#6573)
Browse files Browse the repository at this point in the history
  • Loading branch information
pavel-mikula-sonarsource authored Dec 20, 2022
1 parent 5736bd3 commit e14c642
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ protected void ReadParameters(SonarAnalysisContext context, CompilationAnalysisC
// For backward compatibility with S4MSB <= 5.0
if (outPath == null && c.Options.ProjectOutFolderPath() is { } projectOutFolderAdditionalFile)
{
outPath = projectOutFolderAdditionalFile.GetText().ToString();
outPath = projectOutFolderAdditionalFile.GetText().ToString().TrimEnd();
}
if (settings.Any() && !string.IsNullOrEmpty(outPath))
{
Expand Down
Original file line number Diff line number Diff line change
@@ -1 +1 @@
path
path

0 comments on commit e14c642

Please sign in to comment.