Skip to content

Commit a56eda3

Browse files
try this
1 parent b28aff5 commit a56eda3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

pioreactorui/tasks.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +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-
run(command, env=dict(os.environ) | env, capture_output=True, text=True)
79+
result = run(command, env=dict(os.environ) | env, capture_output=True, text=True)
8080

8181
if result.returncode != 0:
8282
raise Exception(result.stderr.strip())

0 commit comments

Comments
 (0)