File tree Expand file tree Collapse file tree 1 file changed +3
-13
lines changed
Expand file tree Collapse file tree 1 file changed +3
-13
lines changed Original file line number Diff line number Diff line change @@ -175,19 +175,9 @@ def _install_packages(self):
175175 nuget = "mono %s" % nuget
176176 use_shell = True
177177
178- for dir in os .listdir ("src" ):
179- if DEVTOOLS == "Mono" and dir == "clrmodule" :
180- continue
181- if DEVTOOLS != "Mono" and dir == "monoclr" :
182- continue
183-
184- packages_cfg = os .path .join ("src" , dir , "packages.config" )
185- if not os .path .exists (packages_cfg ):
186- continue
187-
188- cmd = "%s install %s -o packages" % (nuget , packages_cfg )
189- self .announce ("Installng packages for %s: %s" % (dir , cmd ))
190- check_call (cmd , shell = use_shell )
178+ cmd = "%s restore pythonnet.sln -o packages" % nuget
179+ self .announce ("Installing packages: %s" % cmd )
180+ check_call (cmd , shell = use_shell )
191181
192182
193183class PythonNET_InstallLib (install_lib ):
You can’t perform that action at this time.
0 commit comments