mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-23 17:12:27 +00:00
dotnet: Avoid double escaping of path (#365941)
This commit is contained in:
@@ -114,7 +114,8 @@ attrs
|
||||
|
||||
# this needs to be before TMPDIR is changed, so the output isn't deleted
|
||||
# if it uses mktemp
|
||||
depsFile=$(realpath "''${1:-${lib.escapeShellArg defaultDepsFile}}")
|
||||
${lib.toShellVars { inherit defaultDepsFile; }}
|
||||
depsFile=$(realpath "''${1:-$defaultDepsFile}")
|
||||
|
||||
export TMPDIR
|
||||
TMPDIR=$(mktemp -d -t fetch-deps-${lib.escapeShellArg finalPackage.name}.XXXXXX)
|
||||
|
||||
Reference in New Issue
Block a user