We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eaaa1db commit 4566400Copy full SHA for 4566400
tools/makecorever.py
@@ -26,7 +26,7 @@ def generate(path, platform_path, git_ver="ffffffff", git_desc="unspecified"):
26
def git(*args):
27
cmd = ["git", "-C", platform_path]
28
cmd.extend(args)
29
- proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, universal_newlines=True)
+ proc = subprocess.Popen(cmd, stdout=subprocess.PIPE, universal_newlines=True, stderr=subprocess.DEVNULL)
30
return proc.stdout.readlines()[0].strip()
31
32
try:
0 commit comments