We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a42a862 commit 3e62b50Copy full SHA for 3e62b50
setup.py
@@ -225,7 +225,10 @@ def _install_packages(self):
225
nuget = "mono %s" % nuget
226
use_shell = True
227
228
- cmd = "%s -ConfigFile /home/ubuntu/.config/NuGet/NuGet.config restore pythonnet.sln -o packages" % nuget
+ cmd_config = "%s config -ConfigFile /home/ubuntu/.config/NuGet/NuGet.Config"
229
+ cmd = "%s pythonnet.sln -o packages" % nuget
230
+ self.announce("Configuring NuGet")
231
+ check_call(cmd, shell=use_shell)
232
self.announce("Installing packages: %s" % cmd)
233
check_call(cmd, shell=use_shell)
234
0 commit comments