From a5847ab4d3274d7a5e2b4515b45ed47fc0f6b7c9 Mon Sep 17 00:00:00 2001 From: Burt Holzman Date: Fri, 10 Aug 2018 14:29:02 -0500 Subject: [PATCH] Don't update nuget.exe --- setup.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/setup.py b/setup.py index 4ec2a2113..75a38b747 100644 --- a/setup.py +++ b/setup.py @@ -325,9 +325,9 @@ def _install_packages(self): if DEVTOOLS == "Mono": nuget = "mono {0}".format(nuget) - cmd = "{0} update -self".format(nuget) - self.debug_print("Updating NuGet: {0}".format(cmd)) - subprocess.check_call(cmd, shell=use_shell) +# cmd = "{0} update -self".format(nuget) +# self.debug_print("Updating NuGet: {0}".format(cmd)) +# subprocess.check_call(cmd, shell=use_shell) cmd = "{0} restore pythonnet.sln -o packages".format(nuget) self.debug_print("Installing packages: {0}".format(cmd))