Skip to content

Commit

Permalink
Merge pull request #916 from liftir/patch-1
Browse files Browse the repository at this point in the history
Fix missing "\" when building dirpath to psmodules
  • Loading branch information
Stanzilla committed Apr 10, 2016
2 parents 160fbad + 6978bb7 commit b47d04f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vendor/profile.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -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;")
Expand Down

0 comments on commit b47d04f

Please sign in to comment.