We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7b512cb commit a42a862Copy full SHA for a42a862
setup.py
@@ -222,10 +222,10 @@ def _install_packages(self):
222
nuget = os.path.join("tools", "nuget", "nuget.exe")
223
use_shell = False
224
if DEVTOOLS == "Mono":
225
- nuget = "mono %s -ConfigFile /home/ubuntu/.config/NuGet/NuGet.config" % nuget
+ nuget = "mono %s" % nuget
226
use_shell = True
227
228
- cmd = "%s restore pythonnet.sln -o packages" % nuget
+ cmd = "%s -ConfigFile /home/ubuntu/.config/NuGet/NuGet.config restore pythonnet.sln -o packages" % nuget
229
self.announce("Installing packages: %s" % cmd)
230
check_call(cmd, shell=use_shell)
231
0 commit comments