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 1fa1599 commit 68a3f2fCopy full SHA for 68a3f2f
pythonnet/setup.py
@@ -99,8 +99,8 @@ def build_extension(self, ext):
99
]
100
101
self.announce("Building: %s" % " ".join(cmd))
102
- check_call(" ".join(cmd) + " /t:Clean", shell=True)
103
- check_call(" ".join(cmd) + " /t:Build", shell=True)
+ check_call(" ".join(cmd + ["/t:Clean"]), shell=(True if DEVTOOLS=="Mono" else False))
+ check_call(" ".join(cmd + ["/t:Build"]), shell=(True if DEVTOOLS=="Mono" else False))
104
105
if DEVTOOLS == "Mono":
106
self._build_monoclr(ext)
0 commit comments