Lines Matching refs:stderr
85 stderr=subprocess.PIPE,
88 stdout, stderr = proc.communicate()
90 print(f"[0/0] {stderr}")
93 proc.returncode, stderr))
152 stderr=subprocess.PIPE,
154 stdout, stderr = proc.communicate()
157 for line in stderr.splitlines():
162 f.write(f'{stderr}\n')
163 if proc.returncode or "ERROR: BUILD FAILED" in stderr or "ERROR: BUILD FAILED" in stdout:
164 raise Exception('ReturnCode:{}. Hvigor build failed: {}'.format(proc.returncode, stderr))
245 stderr=subprocess.DEVNULL)