Skip to content

Commit 10a51e6

Browse files
try this
1 parent d5ca966 commit 10a51e6

File tree

1 file changed

+1
-3
lines changed

1 file changed

+1
-3
lines changed

pioreactorui/tasks.py

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -88,9 +88,7 @@ def pio_run(*args: str, env: dict[str, str] = {}) -> bool:
8888

8989
env = {k: v for k, v in (env or {}).items() if k in ALLOWED_ENV}
9090
logger.info(f"Executing `{join(command)}`, {env=}")
91-
Popen(
92-
command, start_new_session=True, env=dict(os.environ) | env, stdout=DEVNULL, stderr=STDOUT
93-
)
91+
Popen(command, env=dict(os.environ) | env, stdout=DEVNULL, stderr=DEVNULL)
9492
return True
9593

9694

0 commit comments

Comments
 (0)