Skip to content

Commit

Permalink
Fix spellcheck
Browse files Browse the repository at this point in the history
  • Loading branch information
edolstra committed Jun 10, 2024
1 parent dfa7189 commit b27508e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions scripts/flake-regressions.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit b27508e

Please sign in to comment.