From 1d93ddf7cdc43ad64b2421a1fb4385f2e006b7f0 Mon Sep 17 00:00:00 2001 From: Arlo Date: Mon, 9 Jun 2025 19:28:27 -0500 Subject: [PATCH] Fix output formatting for changed component list --- Get-Changed-Components.ps1 | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Get-Changed-Components.ps1 b/Get-Changed-Components.ps1 index 6983a46..1e9d714 100644 --- a/Get-Changed-Components.ps1 +++ b/Get-Changed-Components.ps1 @@ -54,8 +54,7 @@ if ($retAllComponents) { if ($retChangedComponents) { $names = $changedComponentFiles | ForEach-Object { ($_ -replace '^components/', '') -replace '/.*$', '' } $uniqueNames = $names | Sort-Object -Unique - $quotedNames = $uniqueNames | ForEach-Object { "'$_'" } - $changedComponentsList = $quotedNames -join ',' + $changedComponentsList = $uniqueNames -join ',' return $changedComponentsList }