You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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:
Prerequisites
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);
line 63 of https://github.com/cake-build/cake/blob/main/src/Cake.Common/Tools/DotNet/Tool/DotNetToolRunner.cs
This is the error then:
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
The text was updated successfully, but these errors were encountered: