crystal.buildCrystalPackage: fix installCheckPhase glob pattern (#477878)

This commit is contained in:
Peter Hoeg
2026-06-01 06:55:53 +00:00
committed by GitHub

View File

@@ -199,7 +199,7 @@ stdenv.mkDerivation (
installCheckPhase =
args.installCheckPhase or ''
for f in $out/bin/*; do
if [ $f == $out/bin/*.dwarf ]; then
if [[ $f == *.dwarf ]]; then
continue
fi
$f --help > /dev/null