Disable hidden logs for windows (#1161)
This commit is contained in:
parent
278222db8f
commit
f11fd25448
@ -48,8 +48,8 @@ def run_process_and_launch_url(
|
||||
cwd=constants.WEB_DIR,
|
||||
env=os.environ,
|
||||
stderr=subprocess.STDOUT,
|
||||
stdout=subprocess.PIPE,
|
||||
universal_newlines=True,
|
||||
stdout=None if platform.system() == "Windows" else subprocess.PIPE,
|
||||
universal_newlines=None if platform.system() == "Windows" else True,
|
||||
)
|
||||
|
||||
current_time = datetime.now()
|
||||
|
Loading…
Reference in New Issue
Block a user