fix(pp): change git urls from 'git://' to 'https://'
The 'git' schema no longer works git repos no longer get cloned
This commit is contained in:
parent
c281311657
commit
7240bda30e
2 changed files with 6 additions and 6 deletions
|
|
@ -20,21 +20,21 @@ class core::tmux {
|
||||||
|
|
||||||
vcsrepo { "${user_home}/.tmux/plugins/tmux-yank":
|
vcsrepo { "${user_home}/.tmux/plugins/tmux-yank":
|
||||||
ensure => latest,
|
ensure => latest,
|
||||||
source => 'git://github.com/tmux-plugins/tmux-yank.git',
|
source => 'https://github.com/tmux-plugins/tmux-yank.git',
|
||||||
provider => git,
|
provider => git,
|
||||||
revision => 'master',
|
revision => 'master',
|
||||||
}
|
}
|
||||||
|
|
||||||
vcsrepo { "${user_home}/.tmux/plugins/tmux-open":
|
vcsrepo { "${user_home}/.tmux/plugins/tmux-open":
|
||||||
ensure => latest,
|
ensure => latest,
|
||||||
source => 'git://github.com/tmux-plugins/tmux-open.git',
|
source => 'https://github.com/tmux-plugins/tmux-open.git',
|
||||||
provider => git,
|
provider => git,
|
||||||
revision => 'master',
|
revision => 'master',
|
||||||
}
|
}
|
||||||
|
|
||||||
vcsrepo { "${user_home}/.tmux/plugins/tmux-copycat":
|
vcsrepo { "${user_home}/.tmux/plugins/tmux-copycat":
|
||||||
ensure => latest,
|
ensure => latest,
|
||||||
source => 'git://github.com/tmux-plugins/tmux-copycat.git',
|
source => 'https://github.com/tmux-plugins/tmux-copycat.git',
|
||||||
provider => git,
|
provider => git,
|
||||||
revision => 'master',
|
revision => 'master',
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
class core::zsh {
|
class core::zsh {
|
||||||
vcsrepo { "${user_home}/.oh-my-zsh":
|
vcsrepo { "${user_home}/.oh-my-zsh":
|
||||||
source => 'git://github.com/robbyrussell/oh-my-zsh.git',
|
source => 'https://github.com/robbyrussell/oh-my-zsh.git',
|
||||||
provider => 'git',
|
provider => 'git',
|
||||||
user => $user,
|
user => $user,
|
||||||
revision => 'master',
|
revision => 'master',
|
||||||
|
|
@ -50,13 +50,13 @@ class core::zsh {
|
||||||
}
|
}
|
||||||
|
|
||||||
vcsrepo { "${user_home}/.oh-my-zsh/custom/plugins/zsh-autosuggestions":
|
vcsrepo { "${user_home}/.oh-my-zsh/custom/plugins/zsh-autosuggestions":
|
||||||
source => 'git://github.com/zsh-users/zsh-autosuggestions',
|
source => 'https://github.com/zsh-users/zsh-autosuggestions',
|
||||||
provider => 'git',
|
provider => 'git',
|
||||||
user => $user,
|
user => $user,
|
||||||
}
|
}
|
||||||
|
|
||||||
vcsrepo { "${user_home}/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting":
|
vcsrepo { "${user_home}/.oh-my-zsh/custom/plugins/zsh-syntax-highlighting":
|
||||||
source => 'git://github.com/zsh-users/zsh-syntax-highlighting.git',
|
source => 'https://github.com/zsh-users/zsh-syntax-highlighting.git',
|
||||||
provider => 'git',
|
provider => 'git',
|
||||||
user => $user,
|
user => $user,
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue