Skip to content

DotNetToolRunner doesn't support empty space at tool path #4286

@HeikeHofmann

Description

@HeikeHofmann

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);

line 63 of https://github.com/cake-build/cake/blob/main/src/Cake.Common/Tools/DotNet/Tool/DotNetToolRunner.cs

This is the error then:
image

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

Metadata

Metadata

Assignees

No one assigned

    Labels

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions