Skip to content

Commit fa11f8b

Browse files
📝[Fix]: Update linter environment variable handling to use correct keys for improved processing
1 parent 5906096 commit fa11f8b

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/workflow.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ jobs:
118118
$env = $linter.env
119119
Write-Host "$($env | Format-Table -AutoSize | Out-String)"
120120
121-
foreach ($key in $map.Keys) {
122-
$value = $map[$key]
121+
foreach ($key in $env.Keys) {
122+
$value = $env[$key]
123123
124124
if ($value -is [bool]) {
125125
$value = $value.ToString().ToLower()

0 commit comments

Comments
 (0)