diff options
author | Michael Fladischer <michael@fladi.at> | 2018-05-28 11:23:05 +0200 |
---|---|---|
committer | Marc Cornellà <marc.cornella@live.com> | 2018-05-28 11:23:05 +0200 |
commit | ce2890bef95b4b0a5b14ed8dd50ad2f78f8dee72 (patch) | |
tree | 93b3e0d3ef5f8755bee089aceb6f48199892add2 | |
parent | 8bbef9180e3ba16e717a9587d0c965ab901c1226 (diff) | |
download | zsh-ce2890bef95b4b0a5b14ed8dd50ad2f78f8dee72.tar.gz zsh-ce2890bef95b4b0a5b14ed8dd50ad2f78f8dee72.tar.bz2 zsh-ce2890bef95b4b0a5b14ed8dd50ad2f78f8dee72.zip |
[plugins/vundle] Use HTTPS to clone repository. (#6857)
The git protocol is likely to be blocked in some networks while HTTPS usually
works.
-rw-r--r-- | plugins/vundle/vundle.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/vundle/vundle.plugin.zsh b/plugins/vundle/vundle.plugin.zsh index 0f071597a..c84cacd0e 100644 --- a/plugins/vundle/vundle.plugin.zsh +++ b/plugins/vundle/vundle.plugin.zsh @@ -6,7 +6,7 @@ function vundle-init () { if [ ! -d ~/.vim/bundle/Vundle.vim/.git ] && [ ! -f ~/.vim/bundle/Vundle.vim/.git ] then - git clone git://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim + git clone https://github.com/VundleVim/Vundle.vim.git ~/.vim/bundle/Vundle.vim echo "\n\tRead about vim configuration for vundle at https://github.com/VundleVim/Vundle.vim\n" fi } |