Revert "Fix missing "\" when building dirpath to psmodules"

This reverts commit 6978bb7417.
This commit is contained in:
Benjamin Staneck 2016-06-30 11:41:17 +02:00
parent b47d04f75c
commit 1dddbcff05

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;")