mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-10-31 22:51:22 +00:00
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:
parent
af85565873
commit
8e0e8e57f8
@ -903,7 +903,7 @@ let self = dotnetPackages // overrides; dotnetPackages = with self; {
|
||||
|
||||
outputFiles = [ "*" ];
|
||||
dllFiles = [ "NuGet*.dll" ];
|
||||
exeFiles = [ "NuGet.exe" ];
|
||||
exeFiles = [ "nuget.exe" ];
|
||||
};
|
||||
|
||||
Paket = buildDotnetPackage rec {
|
||||
|
Loading…
Reference in New Issue
Block a user