Skip to content

Commit

Permalink
fix: missing space causing printing error on azuredevops (#988)
Browse files Browse the repository at this point in the history
Signed-off-by: naoufal zerai <[email protected]>
  • Loading branch information
naoufalzerai authored Aug 8, 2024
1 parent 8d1c1ae commit 56d742d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion output/azuredevops.go
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ func (t *AzureDevOps) Output(checkResults []CheckResult) error {
}

for _, exception := range result.Exceptions {
fmt.Fprintf(t.writer, "##vso[task.logissuetype=warning] file=%v --> %v\n", result.FileName, exception.Message)
fmt.Fprintf(t.writer, "##vso[task.logissue type=warning] file=%v --> %v\n", result.FileName, exception.Message)
}

for _, skipped := range result.Skipped {
Expand Down

0 comments on commit 56d742d

Please sign in to comment.