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 );
in
{
jobsets = pkgs.runCommand "spec.json" {} ''
ln -s ${jobsetsJson} $out
jobsets = pkgs.runCommand "jobsets.json" {} ''
cp ${jobsetsJson} $out
'';
}