Merge pull request #226931 from wegank/crystal-dwarf-ignore

crystal.buildCrystalPackage: ignore dwarf files
This commit is contained in:
Weijia Wang
2023-04-19 01:02:28 +03:00
committed by GitHub
@@ -150,6 +150,9 @@ stdenv.mkDerivation (mkDerivationArgs // {
installCheckPhase = args.installCheckPhase or ''
for f in $out/bin/*; do
if [ $f == $out/bin/*.dwarf ]; then
continue
fi
$f --help > /dev/null
done
'';