Skip to content

Commit

Permalink
Fix up argument used
Browse files Browse the repository at this point in the history
  • Loading branch information
jborean93 committed Dec 11, 2023
1 parent b7c457b commit 2abf9a2
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Documentation/GlobalTool.md
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ Options:
--use-source-link Specifies whether to use SourceLink URIs in place of file system paths.
--does-not-return-attribute Attributes that mark methods that do not return.
--exclude-assemblies-without-sources Specifies behaviour of heuristic to ignore assemblies with missing source documents.
--use-mapping-file Specifies the path to a SourceRootsMappings file.
--source-mapping-file Specifies the path to a SourceRootsMappings file.
--version Show version information
-?, -h, --help Show help and usage information
```
Expand Down
2 changes: 1 addition & 1 deletion test/coverlet.integration.tests/DotnetTool.cs
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ public void StandAlonePathMapping()
{
$"|{clonedTemplateProject.ProjectRootPath}{Path.DirectorySeparatorChar}=/_/"
});
RunCommand(coverletToolCommandPath, $"\"{publishedTestFile}\" --target \"dotnet\" --targetargs \"test {Path.Combine(clonedTemplateProject.ProjectRootPath, ClonedTemplateProject.ProjectFileName)} --no-build\" --include-test-assembly --output \"{clonedTemplateProject.ProjectRootPath}\"{Path.DirectorySeparatorChar} --use-mapping-file \"{mappingFile}\"", out standardOutput, out standardError);
RunCommand(coverletToolCommandPath, $"\"{publishedTestFile}\" --target \"dotnet\" --targetargs \"test {Path.Combine(clonedTemplateProject.ProjectRootPath, ClonedTemplateProject.ProjectFileName)} --no-build\" --include-test-assembly --output \"{clonedTemplateProject.ProjectRootPath}\"{Path.DirectorySeparatorChar} --source-mapping-file \"{mappingFile}\"", out standardOutput, out standardError);
if (!string.IsNullOrEmpty(standardError))
{
_output.WriteLine(standardError);
Expand Down

0 comments on commit 2abf9a2

Please sign in to comment.