Skip to content

Commit da77a86

Browse files
committed
Fix typo
1 parent e459ceb commit da77a86

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

hugoalh.GitHubActionsToolkit/hugoalh.GitHubActionsToolkit.psm1

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -555,22 +555,22 @@ function Write-GHActionsAnnotation {
555555
)
556556
[hashtable]$Property = @{}
557557
if ($File.Length -gt 0) {
558-
$Properties.'file' = $File
558+
$Property.'file' = $File
559559
}
560560
if ($Line -gt 0) {
561-
$Properties.'line' = $Line
561+
$Property.'line' = $Line
562562
}
563563
if ($Column -gt 0) {
564-
$Properties.'col' = $Column
564+
$Property.'col' = $Column
565565
}
566566
if ($EndLine -gt 0) {
567-
$Properties.'endLine' = $EndLine
567+
$Property.'endLine' = $EndLine
568568
}
569569
if ($EndColumn -gt 0) {
570-
$Properties.'endColumn' = $EndColumn
570+
$Property.'endColumn' = $EndColumn
571571
}
572572
if ($Title.Length -gt 0) {
573-
$Properties.'title' = $Title
573+
$Property.'title' = $Title
574574
}
575575
Write-GHActionsCommand -Command $Type.ToString().ToLower() -Message $Message -Property $Property
576576
}

0 commit comments

Comments
 (0)