Improve warning text when posh-git is missing.

This commit is contained in:
Martin Kemp 2015-05-17 22:13:23 +01:00
parent 83a853bd52
commit a18320c938

2
vendor/profile.ps1 vendored
View File

@ -10,7 +10,7 @@ try {
Import-Module -Name "posh-git" -ErrorAction Stop >$null
$gitStatus = $true
} catch {
Write-Warning "Missing git support"
Write-Warning "Missing git support, install posh-git with 'Install-Module posh-git' and restart cmder."
$gitStatus = $false
}