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 f4fb158 commit 8dbaee3Copy full SHA for 8dbaee3
umu/umu_run.py
@@ -452,7 +452,9 @@ def run_command(command: list[str]) -> int:
452
# Create a subprocess but do not set it as subreaper
453
# Unnecessary in a Flatpak and prctl() will fail if libc could not be found
454
if FLATPAK_PATH or not libc:
455
- return run(command, start_new_session=True, check=False).returncode
+ return run(
456
+ command, start_new_session=True, check=False, cwd=cwd
457
+ ).returncode
458
459
prctl = CDLL(libc).prctl
460
prctl.restype = c_int
0 commit comments