pulled in upstream development branch

This commit is contained in:
Dax T. Games
2015-11-14 12:15:42 -06:00
4 changed files with 14 additions and 8 deletions

6
vendor/profile.ps1 vendored
View File

@ -24,6 +24,12 @@ if( -not $env:PSModulePath.Contains($CmderModulePath) ){
$env:PSModulePath = $env:PSModulePath.Insert(0, "$CmderModulePath;")
}
try {
Get-command -Name "vim" -ErrorAction Stop >$null
} catch {
$env:Path += ";$env:CMDER_ROOT\vendor\git-for-windows\usr\share\vim\vim74"
}
try {
# Check if git is on PATH, i.e. Git already installed on system
Get-command -Name "git" -ErrorAction Stop >$null