diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2016-05-28 17:05:12 -0400 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-05-28 17:05:12 -0400 |
commit | 7e65cc22ea288fc2375ce6872320197f04cd0035 (patch) | |
tree | 13edb8fc43529a2b24960b02c933f162b1e46fe0 | |
parent | 17868444985d8e22ac8373250a9996989be57a6c (diff) | |
parent | e50b4fd36d2ad3c8d086de7badad120f19123aa6 (diff) | |
download | rneovim-7e65cc22ea288fc2375ce6872320197f04cd0035.tar.gz rneovim-7e65cc22ea288fc2375ce6872320197f04cd0035.tar.bz2 rneovim-7e65cc22ea288fc2375ce6872320197f04cd0035.zip |
Merge pull request #4833 from jamessan/multi-remote-fix
vim-patch.sh: Only print the first neovim/neovim remote name
-rwxr-xr-x | scripts/vim-patch.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh index 7a0001769a..62f2b80a82 100755 --- a/scripts/vim-patch.sh +++ b/scripts/vim-patch.sh @@ -92,7 +92,7 @@ commit_message() { find_git_remote() { git remote -v \ - | awk '$2 ~ /github.com[:/]neovim\/neovim/ && $3 == "(fetch)" {print $1}' + | awk '$2 ~ /github.com[:/]neovim\/neovim/ && $3 == "(fetch)" {print $1; exit}' } assign_commit_details() { |