You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is due to this in conans/util/runners.py because pipes are being used
try:
proc = subprocess.Popen(command, shell=shell, stdout=out, stderr=err, cwd=cwd)
except Exception as e:
raise ConanException("Error while running cmd\nError: %s" % (str(e)))
proc_stdout, proc_stderr = proc.communicate()
# If the output is piped, like user provided a StringIO or testing, the communicate
# will capture and return something when thing finished
You only get to see the output once it's finished.
The text was updated successfully, but these errors were encountered: