X Tutup
Skip to content

Commit 3e62b50

Browse files
author
Haziman Hashim
authored
Update setup.py
1 parent a42a862 commit 3e62b50

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

setup.py

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -225,7 +225,10 @@ def _install_packages(self):
225225
nuget = "mono %s" % nuget
226226
use_shell = True
227227

228-
cmd = "%s -ConfigFile /home/ubuntu/.config/NuGet/NuGet.config restore pythonnet.sln -o packages" % nuget
228+
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)
229232
self.announce("Installing packages: %s" % cmd)
230233
check_call(cmd, shell=use_shell)
231234

0 commit comments

Comments
 (0)
X Tutup