lol

Merge pull request #327590 from Smaug123/fetchdeps-escaping

dotnet: fix fetchDeps null handling

authored by

David McFarland and committed by
GitHub
c82d9d31 d899912e

+2 -2
+2 -2
pkgs/build-support/dotnet/build-dotnet-module/default.nix
··· 227 227 else 228 228 ''$(mktemp -t "${pname}-deps-XXXXXX.nix")''; 229 229 storeSrc = srcOnly args; 230 - projectFileStr = lib.escapeShellArg projectFiles; 231 - testProjectFileStr = lib.escapeShellArg testProjectFiles; 230 + projectFileStr = lib.escapeShellArgs projectFiles; 231 + testProjectFileStr = lib.escapeShellArgs testProjectFiles; 232 232 path = lib.makeBinPath [ 233 233 coreutils 234 234 runtimeShellPackage