Browse Source

Fix SSH prefix

pull/491/head
Dan Nixon 11 years ago
parent
commit
1f474c868c
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      autoload/vundle/config.vim

+ 1
- 1
autoload/vundle/config.vim View File

@ -136,7 +136,7 @@ func! s:parse_name(arg)
let arg = a:arg
let git_proto = exists('g:vundle_default_git_proto') ? g:vundle_default_git_proto : 'https'
if git_proto ==? 'ssh'
let github_prefix = 'git@github.com/'
let github_prefix = 'git@github.com:'
else
let github_prefix = git_proto.'://github.com/'
endif


Loading…
Cancel
Save