Skip to content

Commit

Permalink
Fixed line break issue
Browse files Browse the repository at this point in the history
The last `| ForEach-Object { [System ... }` was not actually being
included in the previous line. The `\`` will cause it to be included
  • Loading branch information
jaredpar committed Oct 10, 2024
1 parent 8c173ce commit 679b1c8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Tools/Scripts/CopyAllResourceStrings.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ $xlfDirectories | ForEach-Object {
};

$resxFiles = Get-ChildItem -Filter *.resx -File -Recurse $destinationSrcDirectory `
| ForEach-Object { $_.FullName }
| ForEach-Object { $_.FullName } `
| ForEach-Object { [System.IO.Path]::GetRelativePath($destinationRepo, $_) };

$resxFiles | ForEach-Object {
Expand Down

0 comments on commit 679b1c8

Please sign in to comment.