Skip to content

Commit f31a5e4

Browse files
authored
Merge pull request #289 from CommunityToolkit/fix/ci/incremental-builds/piping-to/filter-supported-components
Fix output formatting for changed component list
2 parents 2547f8a + 1d93ddf commit f31a5e4

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

Get-Changed-Components.ps1

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,7 @@ if ($retAllComponents) {
5454
if ($retChangedComponents) {
5555
$names = $changedComponentFiles | ForEach-Object { ($_ -replace '^components/', '') -replace '/.*$', '' }
5656
$uniqueNames = $names | Sort-Object -Unique
57-
$quotedNames = $uniqueNames | ForEach-Object { "'$_'" }
58-
$changedComponentsList = $quotedNames -join ','
57+
$changedComponentsList = $uniqueNames -join ','
5958
return $changedComponentsList
6059
}
6160

0 commit comments

Comments
 (0)