aboutsummaryrefslogtreecommitdiffstats
path: root/contrib
diff options
context:
space:
mode:
authorKhem Raj <raj.khem@gmail.com>2013-09-05 14:09:20 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2013-09-06 22:17:44 +0100
commit7adb05978b917e624016bae1700db23bd280b41a (patch)
treeb8e0fdd934a1adb0bba83aef5e25fb9651b959df /contrib
parent181899bd9665f74f8d1b22d2453616ad30d26d9e (diff)
downloadbitbake-7adb05978b917e624016bae1700db23bd280b41a.tar.gz
newbb.vim: Use 'git config' instead of git-config
Newer versions of git do not have the '-' concatenated command Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'contrib')
-rwxr-xr-xcontrib/vim/plugin/newbb.vim4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/vim/plugin/newbb.vim b/contrib/vim/plugin/newbb.vim
index afba1d9aa..053ed710a 100755
--- a/contrib/vim/plugin/newbb.vim
+++ b/contrib/vim/plugin/newbb.vim
@@ -15,7 +15,7 @@ if &compatible || v:version < 600
endif
fun! <SID>GetUserName()
- let l:user_name = system("git-config --get user.name")
+ let l:user_name = system("git config --get user.name")
if v:shell_error
return "Unknow User"
else
@@ -23,7 +23,7 @@ fun! <SID>GetUserName()
endfun
fun! <SID>GetUserEmail()
- let l:user_email = system("git-config --get user.email")
+ let l:user_email = system("git config --get user.email")
if v:shell_error
return "unknow@user.org"
else