Fix missing "\" when building dirpath to psmodules

Join-Path won't add "\"'s without the use of a delimeter.  In this case there is no delimiter and as a result the script will fail when it tries to look up $CmderModulePath.
This commit is contained in:
liftir 2016-04-08 21:21:38 -04:00
parent 160fbad621
commit 6978bb7417

2
vendor/profile.ps1 vendored
View File

@ -18,7 +18,7 @@ if(!$PSScriptRoot) {
}
# Add Cmder modules directory to the autoload path.
$CmderModulePath = Join-path $PSScriptRoot "psmodules/"
$CmderModulePath = Join-path $PSScriptRoot "\psmodules/"
if( -not $env:PSModulePath.Contains($CmderModulePath) ){
$env:PSModulePath = $env:PSModulePath.Insert(0, "$CmderModulePath;")