diff options
author | Shota <shotat@users.noreply.github.com> | 2016-06-02 04:02:20 +0900 |
---|---|---|
committer | Justin M. Keyes <justinkz@gmail.com> | 2016-06-01 15:02:20 -0400 |
commit | 568da8ef3b6578e34732a697e621847980487352 (patch) | |
tree | b45037a6a2d55baa956f0cfb33606be3061c74df | |
parent | 0afe63e9253c259699c5cc714e451e0273de16ee (diff) | |
download | rneovim-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-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 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() { |