Skip to content

Commit a3fa6c4

Browse files
try this
1 parent 8cd5f04 commit a3fa6c4

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
@@ -76,9 +76,7 @@ def pio_run(*args: str, env: dict[str, str] = {}) -> bool:
7676

7777
env = {k: v for k, v in (env or {}).items() if k in ALLOWED_ENV}
7878
logger.info(f"Executing `{join(command)}`, {env=}")
79-
Popen(
80-
command, start_new_session=True, env=dict(os.environ) | env, stdout=DEVNULL, stderr=STDOUT
81-
)
79+
Popen(command, env=dict(os.environ) | env, stdout=DEVNULL, stderr=STDOUT)
8280
return True
8381

8482

0 commit comments

Comments
 (0)