From 0feb78561ea06a7fbfb2923f8d819bf9e5d1d69d Mon Sep 17 00:00:00 2001 From: Iristyle Date: Thu, 9 May 2013 14:14:25 -0400 Subject: [PATCH] feat(Posh-GitHub): better post-install message --- Posh-GitHub/tools/chocolateyInstall.ps1 | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/Posh-GitHub/tools/chocolateyInstall.ps1 b/Posh-GitHub/tools/chocolateyInstall.ps1 index a8c0bf7..b45d1a9 100644 --- a/Posh-GitHub/tools/chocolateyInstall.ps1 +++ b/Posh-GitHub/tools/chocolateyInstall.ps1 @@ -60,12 +60,13 @@ try { "`n`n# Load Posh-GitHub`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-Github with: -. $PROFILE -'@ Write-ChocolateySuccess $package } catch