mirror of
https://github.com/cmderdev/cmder.git
synced 2024-11-10 09:49:12 +08:00
do not display message when alterring git path
This commit is contained in:
parent
f0c4e85ac8
commit
7cc1c77225
3
vendor/psmodules/Cmder.ps1
vendored
3
vendor/psmodules/Cmder.ps1
vendored
@ -83,7 +83,7 @@ function Configure-Git($gitRoot, $gitType, $gitPathUser){
|
|||||||
if ($gitType -eq 'VENDOR') {
|
if ($gitType -eq 'VENDOR') {
|
||||||
# If User Git is installed replace its path config with Newer Vendored Git Path
|
# If User Git is installed replace its path config with Newer Vendored Git Path
|
||||||
if ($gitPathUser -ne '' -and $gitPathUser -ne $null) {
|
if ($gitPathUser -ne '' -and $gitPathUser -ne $null) {
|
||||||
write-host "Cmder 'profile.ps1': Replacing older user Git path '$gitPathUser' with newer vendored Git path '$gitRoot' in the system path..."
|
# write-host "Cmder 'profile.ps1': Replacing older user Git path '$gitPathUser' with newer vendored Git path '$gitRoot' in the system path..."
|
||||||
|
|
||||||
$newPath = ($env:path -ireplace [regex]::Escape($gitPathUser), $gitRoot)
|
$newPath = ($env:path -ireplace [regex]::Escape($gitPathUser), $gitRoot)
|
||||||
} else {
|
} else {
|
||||||
@ -115,7 +115,6 @@ function Configure-Git($gitRoot, $gitType, $gitPathUser){
|
|||||||
}
|
}
|
||||||
|
|
||||||
function Import-Git(){
|
function Import-Git(){
|
||||||
|
|
||||||
$GitModule = Get-Module -Name Posh-Git -ListAvailable
|
$GitModule = Get-Module -Name Posh-Git -ListAvailable
|
||||||
if($GitModule | select version | where version -le ([version]"0.6.1.20160330")){
|
if($GitModule | select version | where version -le ([version]"0.6.1.20160330")){
|
||||||
Import-Module Posh-Git > $null
|
Import-Module Posh-Git > $null
|
||||||
|
Loading…
Reference in New Issue
Block a user