mirror of
https://github.com/cmderdev/cmder.git
synced 2025-08-03 05:49:20 +08:00
Merge branch 'master' into patch-2
# Conflicts: # vendor/profile.ps1
This commit is contained in:
6
vendor/profile.ps1
vendored
6
vendor/profile.ps1
vendored
@ -21,10 +21,14 @@ if (! $ENV:CMDER_ROOT ) {
|
||||
# Remove trailing '\'
|
||||
$ENV:CMDER_ROOT = (($ENV:CMDER_ROOT).trimend("\"))
|
||||
|
||||
# do not load bundled psget if a module installer is already available
|
||||
# -> recent PowerShell versions include PowerShellGet out of the box
|
||||
$moduleInstallerAvailable = [bool](Get-Command -Name 'Install-Module' -ErrorAction SilentlyContinue | Out-Null)
|
||||
|
||||
# Add Cmder modules directory to the autoload path.
|
||||
$CmderModulePath = Join-path $PSScriptRoot "psmodules/"
|
||||
|
||||
if( -not $env:PSModulePath.Contains($CmderModulePath) ){
|
||||
if(-not $moduleInstallerAvailable -and -not $env:PSModulePath.Contains($CmderModulePath) ){
|
||||
$env:PSModulePath = $env:PSModulePath.Insert(0, "$CmderModulePath;")
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user