From f7278662f0429acc22b9a9c114096a481fa928eb Mon Sep 17 00:00:00 2001 From: Iristyle Date: Thu, 9 May 2013 14:10:46 -0400 Subject: [PATCH] fix(Posh-VsVars): better post-install message --- Posh-VsVars/tools/chocolateyInstall.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/Posh-VsVars/tools/chocolateyInstall.ps1 b/Posh-VsVars/tools/chocolateyInstall.ps1 index e93c3b3..589255a 100644 --- a/Posh-VsVars/tools/chocolateyInstall.ps1 +++ b/Posh-VsVars/tools/chocolateyInstall.ps1 @@ -58,10 +58,13 @@ try { $loaderFile = 'Posh-VsVars-Profile.ps1' "`n`n# Load Posh-VsVars`n. '$installDirectory\$loaderFile'" | Out-File -FilePath $PROFILE -Append -Encoding (Get-FileEncoding $PROFILE) - Write-Host 'Reloading PowerShell Profile...' . $PROFILE } + Write-Host @' + Reload the current profile to access Posh-VsVars with: + . $PROFILE +'@ Write-ChocolateySuccess $package } catch