1
0
Fork 0
mirror of https://github.com/NixOS/nix synced 2024-09-19 10:50:24 -04:00

Fix spellcheck

This commit is contained in:
Eelco Dolstra 2024-06-10 15:16:41 +02:00
parent 0eec60968a
commit 6f3d2daee6

View file

@ -9,13 +9,13 @@ cd flake-regressions
status=0
flakes=$(ls -d tests/*/*/* | sort | head -n25)
flakes=$(find tests -mindepth 3 -maxdepth 3 -type d -not -path '*/.*' | sort | head -n25)
echo "Running flake tests..."
for flake in $flakes; do
if ! REGENERATE=0 ./eval-flake.sh $flake; then
if ! REGENERATE=0 ./eval-flake.sh "$flake"; then
status=1
echo "$flake"
else