We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
current
1 parent 478f52c commit 3d8d5e8Copy full SHA for 3d8d5e8
lib/versions.ps1
@@ -9,7 +9,7 @@ function versions($app, $global) {
9
$appdir = appdir $app $global
10
if(!(test-path $appdir)) { return @() }
11
12
- sort_versions (Get-ChildItem $appdir -dir -attr !reparsePoint | ForEach-Object { $_.name })
+ sort_versions (Get-ChildItem $appdir -dir -attr !reparsePoint | Where-Object { $null -ne $(Get-ChildItem $_.fullname) } | ForEach-Object { $_.name })
13
}
14
15
function version($ver) {
0 commit comments