We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents dd313e9 + 485f42b commit 6c32db8Copy full SHA for 6c32db8
1 file changed
PSUtil/functions/path/Get-PSUPathAlias.ps1
@@ -25,11 +25,11 @@
25
26
$aliases = Get-PSFConfig -FullName psutil.pathalias.$Alias
27
28
- foreach ($alias in $aliases)
+ foreach ($currentAlias in $aliases)
29
{
30
[pscustomobject]@{
31
- Alias = ($alias.fullname -replace '^psutil.pathalias.')
32
- Path = $alias.value
+ Alias = ($currentAlias.fullname -replace '^psutil.pathalias.')
+ Path = $currentAlias.value
33
}
34
35
-}
+}
0 commit comments