We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b28aff5 commit a56eda3Copy full SHA for a56eda3
pioreactorui/tasks.py
@@ -76,7 +76,7 @@ def pio_run(*args: str, env: dict[str, str] = {}) -> bool:
76
77
env = {k: v for k, v in (env or {}).items() if k in ALLOWED_ENV}
78
logger.info(f"Executing `{join(command)}`, {env=}")
79
- run(command, env=dict(os.environ) | env, capture_output=True, text=True)
+ result = run(command, env=dict(os.environ) | env, capture_output=True, text=True)
80
81
if result.returncode != 0:
82
raise Exception(result.stderr.strip())
0 commit comments