diff options
| author | 06kellyjac <dev@j-k.io> | 2025-10-16 11:33:15 +0100 |
|---|---|---|
| committer | 06kellyjac <dev@j-k.io> | 2025-11-18 10:32:36 +0000 |
| commit | c6589bb292be65a02dac26e0ffbc23ca097555c9 (patch) | |
| tree | 7e994f2c40d617b7d9fa7ebbfe5987379cab6984 /maintainers/scripts | |
| parent | maintainers/scripts/check-hydra-by-maintainer: use hydra-check already in path (diff) | |
| download | nixpkgs-c6589bb292be65a02dac26e0ffbc23ca097555c9.tar.gz | |
maintainers/scripts/check-hydra-by-maintainer: inform user eval is taking place
Evaluation to identify packages can take time; print something so the
user knows what's going on and waits.
Diffstat (limited to 'maintainers/scripts')
| -rw-r--r-- | maintainers/scripts/check-hydra-by-maintainer.nix | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/maintainers/scripts/check-hydra-by-maintainer.nix b/maintainers/scripts/check-hydra-by-maintainer.nix index 5107220820e5..26ef647ed4c9 100644 --- a/maintainers/scripts/check-hydra-by-maintainer.nix +++ b/maintainers/scripts/check-hydra-by-maintainer.nix @@ -30,7 +30,7 @@ let ) set )); - packages = packagesWith ( + packages = builtins.trace "evaluating list of packages for maintainer: ${maintainer}" packagesWith ( name: pkg: ( if builtins.hasAttr "meta" pkg && builtins.hasAttr "maintainers" pkg.meta then |
