vimpatch.sh: bug fix in find_git_remote regex (#4863)

vimpatch.sh: fix awk expr
This commit is contained in:
Shota 2016-06-02 04:02:20 +09:00 committed by Justin M. Keyes
parent 0afe63e925
commit 568da8ef3b

View File

@ -92,7 +92,7 @@ commit_message() {
find_git_remote() {
git remote -v \
| awk '$2 ~ /github.com[:/]neovim\/neovim/ && $3 == "(fetch)" {print $1; exit}'
| awk '$2 ~ /github.com[:\/]neovim\/neovim/ && $3 == "(fetch)" {print $1; exit}'
}
assign_commit_details() {