Skip to content

Commit 7e5501f

Browse files
Fix assignment operator in Action-Test workflow for Git configuration parsing
1 parent 2b042c8 commit 7e5501f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/Action-Test.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -48,7 +48,7 @@ jobs:
4848
$config = @()
4949
$configList = $configList | Sort-Object
5050
$configList | ForEach-Object {
51-
$name, $value += $_ -split '='
51+
$name, $value = $_ -split '='
5252
$config += @{
5353
$name = $value
5454
}

0 commit comments

Comments
 (0)