From 258efac3c609274683a35e3f60e1934402be6c22 Mon Sep 17 00:00:00 2001 From: =?utf8?q?Alexander=20K=C3=B6plinger?= Date: Wed, 14 Jun 2017 00:45:58 +0200 Subject: [PATCH] [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. --- packaging/MacSDK/nuget.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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() -- 2.25.1