[oe-commits] [openembedded-core] 41/56: externalsrc.bbclass: Suppress git errors

git at git.openembedded.org git at git.openembedded.org
Fri Feb 16 18:07:55 UTC 2018


This is an automated email from the git hooks/post-receive script.

rpurdie pushed a commit to branch master
in repository openembedded-core.

commit 66011996e1a8b738b31466fccad9973f8b48f71d
Author: Joshua Watt <jpewhacker at gmail.com>
AuthorDate: Wed Feb 14 11:09:38 2018 -0600

    externalsrc.bbclass: Suppress git errors
    
    Suppress any warnings git might generate when searching for a valid git
    directory, as there are use cases where the directory is expected to not
    exist and the warning is superfluous
    
    Signed-off-by: Joshua Watt <JPEWhacker at gmail.com>
    Signed-off-by: Richard Purdie <richard.purdie at linuxfoundation.org>
---
 meta/classes/externalsrc.bbclass | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/meta/classes/externalsrc.bbclass b/meta/classes/externalsrc.bbclass
index 65dd13d..ac1b904 100644
--- a/meta/classes/externalsrc.bbclass
+++ b/meta/classes/externalsrc.bbclass
@@ -189,7 +189,7 @@ def srctree_hash_files(d, srcdir=None):
 
     try:
         git_dir = os.path.join(s_dir,
-            subprocess.check_output(['git', '-C', s_dir, 'rev-parse', '--git-dir']).decode("utf-8").rstrip())
+            subprocess.check_output(['git', '-C', s_dir, 'rev-parse', '--git-dir'], stderr=subprocess.DEVNULL).decode("utf-8").rstrip())
     except subprocess.CalledProcessError:
         pass
 

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list