Skip to content

Commit 4e9b02b

Browse files
fix: update output formatting for directory contents in release workflow
1 parent 65ba68b commit 4e9b02b

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

.github/workflows/create-latest-branch-release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -185,7 +185,7 @@ jobs:
185185
186186
foreach ($dir in $altDirs) {
187187
if (Test-Path $dir) {
188-
Write-Output "Contents of $dir:"
188+
Write-Output "Contents of ${dir}:"
189189
Get-ChildItem -Path $dir -Recurse | ForEach-Object {
190190
Write-Output " $($_.FullName)"
191191
}

0 commit comments

Comments
 (0)