Skip to content

Commit

Permalink
🐛 Solution/project name should be quoted if space found
Browse files Browse the repository at this point in the history
  • Loading branch information
hybloid authored and qodana-bot committed May 27, 2024
1 parent f00f238 commit 764f2f1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions core/properties.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,9 +101,9 @@ func getPropertiesMap(
properties["-Drider.collect.full.container.statistics"] = "true"
properties["-Drider.suppress.std.redirect"] = "true"
if dotNet.Project != "" {
properties["-Dqodana.net.project"] = dotNet.Project
properties["-Dqodana.net.project"] = platform.QuoteIfSpace(dotNet.Project)
} else if dotNet.Solution != "" {
properties["-Dqodana.net.solution"] = dotNet.Solution
properties["-Dqodana.net.solution"] = platform.QuoteIfSpace(dotNet.Solution)
}
if dotNet.Configuration != "" {
properties["-Dqodana.net.configuration"] = dotNet.Configuration
Expand Down

0 comments on commit 764f2f1

Please sign in to comment.