1
0
mirror of https://github.com/NixOS/nixos-hardware synced 2024-06-02 02:53:34 +02:00

tests/eval-test: clean up

This commit is contained in:
zimbatm 2017-12-25 17:23:16 +00:00 committed by Yegor Timoshenko
parent 83890749b2
commit 459ac00c62
No known key found for this signature in database
GPG Key ID: C34BF9DCC9DF8210

View File

@ -1,10 +1,10 @@
#!/bin/sh
cd $(dirname $0)/..
set -e
find=(find . -name default.nix)
cd "$(dirname "$0")/.."
for profile in `${find[@]}`; do
for profile in $(find . -name default.nix); do
echo evaluating $profile >&2
nix-build '<nixpkgs/nixos>' \
@ -12,8 +12,4 @@ for profile in `${find[@]}`; do
-I nixos-hardware-profile=$profile \
-A system \
--dry-run
if [ $? -ne 0 ]; then
exit 1
fi
done