Modify Github repository URI from `git` to `https`.
This commit is contained in:
parent
569423ee2d
commit
8f09026fed
|
@ -21,7 +21,7 @@ end
|
|||
|
||||
# `git-now` deployment:
|
||||
git '/home/kazu634/repo/git-now' do
|
||||
repository 'git://github.com/iwata/git-now.git'
|
||||
repository 'https://github.com/iwata/git-now.git'
|
||||
user 'kazu634'
|
||||
|
||||
recursive true
|
||||
|
@ -36,7 +36,7 @@ end
|
|||
|
||||
# Deploy dot files:
|
||||
git '/home/kazu634/repo/dotfiles' do
|
||||
repository 'git://github.com/kazu634/dotfiles.git'
|
||||
repository 'https://github.com/kazu634/dotfiles.git'
|
||||
user 'kazu634'
|
||||
end
|
||||
|
||||
|
@ -49,7 +49,7 @@ end
|
|||
|
||||
# Deploy `zplug`:
|
||||
git '/home/kazu634/.zplug' do
|
||||
repository 'git://github.com/zplug/zplug.git'
|
||||
repository 'https://github.com/zplug/zplug.git'
|
||||
user 'kazu634'
|
||||
end
|
||||
|
||||
|
|
|
@ -1,6 +1,6 @@
|
|||
# Deploy .vim configuration
|
||||
git '/home/kazu634/.vim' do
|
||||
repository 'git://github.com/kazu634/vim.git'
|
||||
repository 'https://github.com/kazu634/vim.git'
|
||||
user 'kazu634'
|
||||
end
|
||||
|
||||
|
@ -12,6 +12,6 @@ directory '/home/kazu634/.vim/bundle/' do
|
|||
end
|
||||
|
||||
git '/home/kazu634/.vim/bundle/neobundle.vim' do
|
||||
repository 'git://github.com/Shougo/neobundle.vim'
|
||||
repository 'https://github.com/Shougo/neobundle.vim'
|
||||
user 'kazu634'
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue