fix(Posh-VsVars): even better post-install msg

This commit is contained in:
Iristyle
2013-05-09 14:16:21 -04:00
parent 359ebb3a6c
commit 85955af86c

View File

@@ -59,12 +59,14 @@ try {
"`n`n# Load Posh-VsVars`n. '$installDirectory\$loaderFile'" |
Out-File -FilePath $PROFILE -Append -Encoding (Get-FileEncoding $PROFILE)
. $PROFILE
Write-Host -ForegroundColor DarkMagenta @'
Reload the current profile to access Posh-Github with:
. $PROFILE
'@
}
Write-Host @'
Reload the current profile to access Posh-VsVars with:
. $PROFILE
'@
Write-ChocolateySuccess $package
}
catch