We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents ce2db57 + ca56dca commit 66b8008Copy full SHA for 66b8008
angularDocsPostDeploy.ps1
@@ -64,7 +64,7 @@ if([System.IO.File]::Exists($filePath) -and [System.IO.Directory]::Exists($angul
64
$folders = Get-ChildItem -Path $angularDocsRootFolder -Directory -Exclude $tagFolder,"sass","typescript" -Name | Sort-Object @{Expression = {[double]($_.Substring(0, $_.LastIndexOf('.'))) }};
65
$textToUpdate = "";
66
foreach($item in $folders) {
67
- $textToUpdate += '"' + $item.Name + '"';
+ $textToUpdate += '"' + $item + '"';
68
}
69
$textToUpdate = "[" + $textToUpdate.Replace("`"`"","`"`,`"") + "]" ;
70
Write-Host $textToUpdate;
0 commit comments