We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f71605f commit eb94435Copy full SHA for eb94435
builder/comp-builder.nix
@@ -652,6 +652,10 @@ let
652
mkdir -p $out/share
653
if [ -d dist/build/extra-compilation-artifacts ]; then
654
cp -r dist/build/extra-compilation-artifacts/hpc $out/share
655
+ elif [ -d ${testExecutable}-tmp/extra-compilation-artifacts ]; then
656
+ cp -r ${testExecutable}-tmp/extra-compilation-artifacts/hpc $out/share
657
+ elif [ -d dist/build/${componentId.cname}/extra-compilation-artifacts ]; then
658
+ cp -r dist/build/${componentId.cname}/extra-compilation-artifacts/hpc $out/share
659
else
660
cp -r dist/hpc $out/share
661
fi
0 commit comments