buildCrystalPackage: redirect stdout to /dev/null

makes build errors easier to diagnose
This commit is contained in:
Artturin 2021-09-07 02:41:15 +03:00
parent 51e3c659a0
commit 9a3ed0e8c5

View File

@ -120,7 +120,7 @@ stdenv.mkDerivation (mkDerivationArgs // {
installCheckPhase = args.installCheckPhase or ''
for f in $out/bin/*; do
$f --help
$f --help > /dev/null
done
'';