dotnetPackages.Nuget: fix binary casing issue

Didn't notice the first time around because macOS isn't case-sensitive
by default, but on Linux the build failed to produce a wrapper script.
This commit is contained in:
Dan Peebles 2018-03-08 21:08:23 +00:00
parent af85565873
commit 8e0e8e57f8

View file

@ -903,7 +903,7 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; {
outputFiles = [ "*" ];
dllFiles = [ "NuGet*.dll" ];
exeFiles = [ "NuGet.exe" ];
exeFiles = [ "nuget.exe" ];
};
Paket = buildDotnetPackage rec {