Merge pull request #173059 from Julow/linkfarm-2
Fix string context lost in `linkFarm`
This commit is contained in:
commit
f2ebcd6509
@ -477,7 +477,7 @@ rec {
|
|||||||
cd $out
|
cd $out
|
||||||
${lib.concatMapStrings (x: ''
|
${lib.concatMapStrings (x: ''
|
||||||
mkdir -p "$(dirname ${lib.escapeShellArg x.name})"
|
mkdir -p "$(dirname ${lib.escapeShellArg x.name})"
|
||||||
ln -s ${lib.escapeShellArg x.path} ${lib.escapeShellArg x.name}
|
ln -s ${lib.escapeShellArg "${x.path}"} ${lib.escapeShellArg x.name}
|
||||||
'') entries}
|
'') entries}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user