Merge pull request 'Modify Github repository URI from `git` to `https`.' (#8) from modify-github-repositories into master

Reviewed-on: #8
This commit is contained in:
Kazuhiro MUSASHI 2022-07-03 12:32:51 +00:00
commit 971e1adf8e
2 changed files with 5 additions and 5 deletions

View File

@ -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

View File

@ -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