Skip to content

Commit 96e6111

Browse files
committed
ci: fixes promote script run ubuntu
1 parent b6812d2 commit 96e6111

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/promoteUnshipped.ps1

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
$nullableConstant = "#nullable enable"
2-
$unshippedDocuments = ls *.Unshipped* -R | Select-Object -ExpandProperty FullName
2+
$unshippedDocuments = Get-ChildItem -Filter *.Unshipped* -Recurse | Select-Object -ExpandProperty FullName
33
foreach ($unshippedDocumentPath in $unshippedDocuments) {
44
$shippedDocumentPath = $unshippedDocumentPath -replace '\.Unshipped', '.Shipped'
55
$unshippedDocumentContent = Get-Content $unshippedDocumentPath -Raw

0 commit comments

Comments
 (0)