Merge pull request #173059 from Julow/linkfarm-2

Fix string context lost in `linkFarm`
main
7c6f434c 2 years ago committed by GitHub
commit f2ebcd6509
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 2
      pkgs/build-support/trivial-builders.nix

@ -477,7 +477,7 @@ rec {
cd $out
${lib.concatMapStrings (x: ''
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}
'';

Loading…
Cancel
Save