mirror of
https://github.com/NixOS/nixos-hardware.git
synced 2025-11-05 01:37:24 +08:00
12 lines
202 B
Bash
Executable File
12 lines
202 B
Bash
Executable File
#!/bin/sh
|
|
set -efu
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "### Evaluating all profiles ###"
|
|
echo
|
|
|
|
# shellcheck disable=SC2044
|
|
for profile in $(find . -name default.nix); do
|
|
./tests/eval-one.sh "$profile"
|
|
done
|