From 568da8ef3b6578e34732a697e621847980487352 Mon Sep 17 00:00:00 2001 From: Shota Date: Thu, 2 Jun 2016 04:02:20 +0900 Subject: vimpatch.sh: bug fix in find_git_remote regex (#4863) vimpatch.sh: fix awk expr --- scripts/vim-patch.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'scripts') diff --git a/scripts/vim-patch.sh b/scripts/vim-patch.sh index 62f2b80a82..a40090d4c3 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; exit}' + | awk '$2 ~ /github.com[:\/]neovim\/neovim/ && $3 == "(fetch)" {print $1; exit}' } assign_commit_details() { -- cgit