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-06-14 01:45:58 +0300
committerAlexander Köplinger <alex.koeplinger@outlook.com>2017-06-14 01:45:58 +0300
commit258efac3c609274683a35e3f60e1934402be6c22 (patch)
tree3aa1e0ffc99381f7e12c69003f7f1864458aeda8 /packaging/MacSDK
parent1a4ce67a49a36cd0203519d9d2aca72fa9b657fb (diff)
[MacSDK] Remove quotes in nuget wrapper script
None of the other wrapper scripts quote the Mono path and this broke the Windows packaging script which extracts nuget from the Mac package.
Diffstat (limited to 'packaging/MacSDK')
-rw-r--r--packaging/MacSDK/nuget.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/packaging/MacSDK/nuget.py b/packaging/MacSDK/nuget.py
index a2cd4ec5860..a28b37c0a07 100644
--- a/packaging/MacSDK/nuget.py
+++ b/packaging/MacSDK/nuget.py
@@ -21,6 +21,6 @@ class NuGetBinary (Package):
with open(launcher, "w") as output:
output.write("#!/bin/sh\n")
output.write(
- 'exec "{0}/bin/mono" $MONO_OPTIONS "{1}" "$@"\n'.format(self.staged_prefix, target))
+ 'exec {0}/bin/mono $MONO_OPTIONS {1} "$@"\n'.format(self.staged_prefix, target))
os.chmod(launcher, 0o755)
NuGetBinary()