From 85955af86c732d448b44732a250e1ace090c338a Mon Sep 17 00:00:00 2001 From: Iristyle Date: Thu, 9 May 2013 14:16:21 -0400 Subject: [PATCH] fix(Posh-VsVars): even better post-install msg --- Posh-VsVars/tools/chocolateyInstall.ps1 | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/Posh-VsVars/tools/chocolateyInstall.ps1 b/Posh-VsVars/tools/chocolateyInstall.ps1 index 589255a..dabf345 100644 --- a/Posh-VsVars/tools/chocolateyInstall.ps1 +++ b/Posh-VsVars/tools/chocolateyInstall.ps1 @@ -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