Skip to content

Commit 7f59b62

Browse files
authored
fix: allow access to file descriptors (#152)
1 parent cdb6555 commit 7f59b62

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/ninja/__init__.py

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

4545

4646
def _program(name, args):
47-
return subprocess.call([os.path.join(BIN_DIR, name)] + args)
47+
return subprocess.call([os.path.join(BIN_DIR, name)] + args, close_fds=False)
4848

4949

5050
def ninja():

0 commit comments

Comments
 (0)