-
-
Notifications
You must be signed in to change notification settings - Fork 764
Closed
Description
Prerequisites
- I have written a descriptive issue title
- I have searched issues to ensure it has not already been reported
Cake runner
Cake .NET Tool
Cake version
4.0.0
Operating system
Windows
Operating system architecture
64-Bit
CI Server
Azure DevOps
What are you seeing?
we want to use Cake.Sonar in the own project, where the SonarScanner DotNet Tool is used.
The execution can be found here:
https://github.com/cake-contrib/Cake.Sonar/blob/f1062a4ceeeeaf58bf662af6b6b478ed2d50119a/src/Cake.Sonar/SonarRunner.cs#L56C23-L56C23
But we have now an empty Space in the path and the execution will fail, because the execution will not append with Quotation Markes.
Here is the issue in the Cake.Tool code:
builder.Append(command);
What is expected?
The code should be:
builder.AppendQuoted(command);
Steps to Reproduce
Add Cake.Sonar and use the Plugin.
Any other dotnet tool and empty space should also be failing with Windows Environment.
Output log
No response
