BugFix git_status. STDERR to /dev/null

This commit is contained in:
Dirk Alders 2021-01-14 00:48:56 +01:00
parent 54f0aa4838
commit bb6b46d7bc

View File

@ -139,7 +139,7 @@ def module_unittest_coverage(module_folder):
def module_git_status(module_folder): def module_git_status(module_folder):
p = subprocess.Popen("git -C %s status" % module_folder, stdout=subprocess.PIPE, shell=True) p = subprocess.Popen("git -C %s status 2> /dev/null" % module_folder, stdout=subprocess.PIPE, shell=True)
output = p.communicate()[0] output = p.communicate()[0]
p_status = p.wait() p_status = p.wait()
if p_status == 0: if p_status == 0: