Skip to content

Commit 66b8008

Browse files
authored
Merge pull request #7828 from IgniteUI/astaev-patch-2
chore(*): Fixing the script
2 parents ce2db57 + ca56dca commit 66b8008

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

angularDocsPostDeploy.ps1

+1-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ if([System.IO.File]::Exists($filePath) -and [System.IO.Directory]::Exists($angul
6464
$folders = Get-ChildItem -Path $angularDocsRootFolder -Directory -Exclude $tagFolder,"sass","typescript" -Name | Sort-Object @{Expression = {[double]($_.Substring(0, $_.LastIndexOf('.'))) }};
6565
$textToUpdate = "";
6666
foreach($item in $folders) {
67-
$textToUpdate += '"' + $item.Name + '"';
67+
$textToUpdate += '"' + $item + '"';
6868
}
6969
$textToUpdate = "[" + $textToUpdate.Replace("`"`"","`"`,`"") + "]" ;
7070
Write-Host $textToUpdate;

0 commit comments

Comments
 (0)