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