Skip to content

Commit ff1a0c4

Browse files
authored
fix: don't close all file descriptors (#303)
1 parent 7e5ba4b commit ff1a0c4

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/cmake/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939

4040

4141
def _program(name, args):
42-
return subprocess.call([os.path.join(CMAKE_BIN_DIR, name)] + args)
42+
return subprocess.call([os.path.join(CMAKE_BIN_DIR, name)] + args, close_fds=False)
4343

4444

4545
def cmake():

0 commit comments

Comments
 (0)