Fix typo
This commit is contained in:
parent
192c47049d
commit
65a44675b2
1 changed files with 1 additions and 1 deletions
|
@ -11,5 +11,5 @@ $context.AddPowerShellProfileStatement(
|
||||||
'# Profile Files',
|
'# Profile Files',
|
||||||
'$profilePath = "$PSScriptRoot/profile.d/*.ps1";',
|
'$profilePath = "$PSScriptRoot/profile.d/*.ps1";',
|
||||||
'if (Test-Path $profilePath) {',
|
'if (Test-Path $profilePath) {',
|
||||||
' Get-Item $profilePath | Foreach-Item { . $_; };',
|
' Get-Item $profilePath | ForEach-Object { . $_; };',
|
||||||
'}') -join ([System.Environment]::NewLine));
|
'}') -join ([System.Environment]::NewLine));
|
||||||
|
|
Loading…
Reference in a new issue