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