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
commit 2c6f1ffebf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

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