[bitbake-devel] [PATCH] newbb.vim: Use 'git config' instead of git-config

Khem Raj raj.khem at gmail.com
Thu Sep 5 21:09:20 UTC 2013


Newer versions of git do not have the '-' concatenated command

Signed-off-by: Khem Raj <raj.khem at gmail.com>
---
 bitbake/contrib/vim/plugin/newbb.vim | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/bitbake/contrib/vim/plugin/newbb.vim b/bitbake/contrib/vim/plugin/newbb.vim
index afba1d9..053ed71 100755
--- a/bitbake/contrib/vim/plugin/newbb.vim
+++ b/bitbake/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 at user.org"
     else
-- 
1.8.4




More information about the bitbake-devel mailing list