Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion tools/Python/mccodelib/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -787,7 +787,7 @@ def run_subtool_noread(cmd, cwd=None, timeout=None):
preexec_fn = None
else:
creationflags = 0
preexec_fn = os.setsid # start new session -> new process group
preexec_fn = os.setpgrp # start new session -> new process group

try:
process = subprocess.Popen(
Expand Down
Loading