Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAlexander Köplinger <alex.koeplinger@outlook.com>2017-05-23 01:16:22 +0300
committerGitHub <noreply@github.com>2017-05-23 01:16:22 +0300
commit3b2da245330b9968c6af8b007a870c33ca53e45d (patch)
tree8f7482417944fe896dac6d13d84df4faea1e301f /packaging/MacSDK
parentab98a01bacfd291e332c370574d284b00a71768c (diff)
Use nuget 4.3.0-preview1 to fix build
4.5.0 is not yet available. Also use lowercase nuget.exe to match the URL on https://dist.nuget.org/
Diffstat (limited to 'packaging/MacSDK')
-rw-r--r--packaging/MacSDK/nuget.py8
1 files changed, 4 insertions, 4 deletions
diff --git a/packaging/MacSDK/nuget.py b/packaging/MacSDK/nuget.py
index a603b1e86ee..a2cd4ec5860 100644
--- a/packaging/MacSDK/nuget.py
+++ b/packaging/MacSDK/nuget.py
@@ -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)