jobsets: don't link but copy

This commit is contained in:
Astro 2019-09-12 02:39:36 +02:00
parent a7678a4522
commit f166d4007c
1 changed files with 2 additions and 2 deletions

View File

@ -30,7 +30,7 @@ let
jobsetsJson = pkgs.writeText "jobsets.json" (builtins.toJSON jobsets ); jobsetsJson = pkgs.writeText "jobsets.json" (builtins.toJSON jobsets );
in in
{ {
jobsets = pkgs.runCommand "spec.json" {} '' jobsets = pkgs.runCommand "jobsets.json" {} ''
ln -s ${jobsetsJson} $out cp ${jobsetsJson} $out
''; '';
} }