Skip to content

Commit db163d3

Browse files
committed
Disable output piping for pacman in setup.py
For some reason, this makes the process of installing dependencies hang.
1 parent 587134a commit db163d3

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ def run(self):
5656

5757
for dep in dependencies:
5858
printf("Installing dependency {}...".format(dep), end=" ")
59-
sp.call(["pacman", "--needed", "--noconfirm", "-S", "mingw-w64-x86_64-{}".format(dep)], stdout=sp.PIPE)
59+
sp.call(["pacman", "--needed", "--noconfirm", "-S", "mingw-w64-x86_64-{}".format(dep)]) # , stdout=sp.PIPE)
6060
printf("Done.")
6161
sp.call(["cmake", ".", "-G", "MinGW Makefiles"])
6262
sp.call(["mingw32-make"])

0 commit comments

Comments
 (0)