Unverified Commit c82d9d31 authored by David McFarland's avatar David McFarland Committed by GitHub
Browse files

Merge pull request #327590 from Smaug123/fetchdeps-escaping

dotnet: fix fetchDeps null handling
parents d899912e 7924a251
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -227,8 +227,8 @@ stdenvNoCC.mkDerivation (args // {
        else
          ''$(mktemp -t "${pname}-deps-XXXXXX.nix")'';
      storeSrc = srcOnly args;
      projectFileStr = lib.escapeShellArg projectFiles;
      testProjectFileStr = lib.escapeShellArg testProjectFiles;
      projectFileStr = lib.escapeShellArgs projectFiles;
      testProjectFileStr = lib.escapeShellArgs testProjectFiles;
      path = lib.makeBinPath [
        coreutils
        runtimeShellPackage