Use nuget 4.3.0-preview1 to fix build
authorAlexander Köplinger <alex.koeplinger@outlook.com>
Mon, 22 May 2017 22:16:22 +0000 (00:16 +0200)
committerGitHub <noreply@github.com>
Mon, 22 May 2017 22:16:22 +0000 (00:16 +0200)
4.5.0 is not yet available.

Also use lowercase nuget.exe to match the URL on https://dist.nuget.org/

packaging/MacSDK/nuget.py

index a603b1e86ee4bbb55d584b8cb8469e522902bb7f..a2cd4ec5860561bdcca9be7514b1f8655ab48531 100644 (file)
@@ -4,15 +4,15 @@ import fileinput
 class NuGetBinary (Package):
 
     def __init__(self):
-        Package.__init__(self, name='NuGet', version='4.5.0', sources=[
-                         'https://dist.nuget.org/win-x86-commandline/v%{version}/NuGet.exe'])
+        Package.__init__(self, name='NuGet', version='4.3.0-preview1', sources=[
+                         'https://dist.nuget.org/win-x86-commandline/v%{version}/nuget.exe'])
 
     def build(self):
         pass
 
     def install(self):
-        source = os.path.join(self.workspace, 'NuGet.exe')
-        target = os.path.join(self.staged_prefix, 'lib/mono/nuget/NuGet.exe')
+        source = os.path.join(self.workspace, 'nuget.exe')
+        target = os.path.join(self.staged_prefix, 'lib/mono/nuget/nuget.exe')
         ensure_dir(os.path.dirname(target))
         shutil.move(source, target)