Skip to content

Commit

Permalink
sonarbegin organisation arg updated
Browse files Browse the repository at this point in the history
  • Loading branch information
dpvreony committed Mar 1, 2019
1 parent df7d75c commit 43c0d9b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.cake
Expand Up @@ -244,7 +244,7 @@ Task("SonarBegin")
.Does(() => {
var coverageFilePath = MakeAbsolute(new FilePath(testCoverageOutputFile)).FullPath;
Information("Sonar: Test Coverage Output File: " + testCoverageOutputFile);
var arguments = "sonarscanner begin /k:\"" + sonarqubeProjectKey + "\" /v:\"" + nugetVersion + "\" /d:\"sonar.host.url=https://sonarcloud.io\" /d:\"sonar.organization=" + sonarqubeOrganisationKey + "\" /d:\"sonar.login=" + sonarQubeLogin + "\" /d:sonar.cs.opencover.reportsPaths=\"" + coverageFilePath + "\"";
var arguments = "sonarscanner begin /k:\"" + sonarqubeProjectKey + "\" /v:\"" + nugetVersion + "\" /d:\"sonar.host.url=https://sonarcloud.io\" /o:" + sonarqubeOrganisationKey + " /d:\"sonar.login=" + sonarQubeLogin + "\" /d:sonar.cs.opencover.reportsPaths=\"" + coverageFilePath + "\"";
if (sonarQubePreview) {
Information("Sonar: Running Sonar on PR " + AppVeyor.Environment.PullRequest.Number);
Expand Down

0 comments on commit 43c0d9b

Please sign in to comment.