Skip to content

Commit 767c33b

Browse files
author
Bruno Sutic
committed
Fix plugin freeze when installing non-existing plugins
Fixes tmux-plugins#7
1 parent 73c8611 commit 767c33b

File tree

2 files changed

+5
-1
lines changed

2 files changed

+5
-1
lines changed

CHANGELOG.md

+4
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
# Changelog
22

33
### master
4+
- change the way plugin name is expanded. It now uses the http username
5+
and password by default, like this: `https://git::@github.com/`. This prevents
6+
username and password prompt (and subsequently tmux install hanging) with old
7+
git versions. Fixes #7.
48

59
### v1.2.0, 2014-11-20
610
- refactor tests so they can be used on travis

scripts/install_plugins.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ clone() {
1616
clone_plugin() {
1717
local plugin=$1
1818
clone "$plugin" ||
19-
clone "https://github.com/$plugin"
19+
clone "https://git::@github.com/$plugin"
2020
}
2121

2222
# pull new changes or clone plugin

0 commit comments

Comments
 (0)