aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorShota <shotat@users.noreply.github.com>2016-06-02 04:02:20 +0900
committerJustin M. Keyes <justinkz@gmail.com>2016-06-01 15:02:20 -0400
commit568da8ef3b6578e34732a697e621847980487352 (patch)
treeb45037a6a2d55baa956f0cfb33606be3061c74df
parent0afe63e9253c259699c5cc714e451e0273de16ee (diff)
downloadrneovim-568da8ef3b6578e34732a697e621847980487352.tar.gz
rneovim-568da8ef3b6578e34732a697e621847980487352.tar.bz2
rneovim-568da8ef3b6578e34732a697e621847980487352.zip
vimpatch.sh: bug fix in find_git_remote regex (#4863)
vimpatch.sh: fix awk expr
-rwxr-xr-xscripts/vim-patch.sh2
1 files changed, 1 insertions, 1 deletions
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() {