mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-07-06 17:13:24 -05:00
crystal.buildCrystalPackage: fix installCheckPhase glob pattern (#477878)
This commit is contained in:
commit
2c6f1ffebf
1 changed files with 1 additions and 1 deletions
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue