mirror of
https://github.com/privatevoid-net/nix-super.git
synced 2024-11-09 15:58:05 +02:00
Fix spellcheck
This commit is contained in:
parent
0eec60968a
commit
6f3d2daee6
1 changed files with 2 additions and 2 deletions
|
@ -9,13 +9,13 @@ cd flake-regressions
|
||||||
|
|
||||||
status=0
|
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..."
|
echo "Running flake tests..."
|
||||||
|
|
||||||
for flake in $flakes; do
|
for flake in $flakes; do
|
||||||
|
|
||||||
if ! REGENERATE=0 ./eval-flake.sh $flake; then
|
if ! REGENERATE=0 ./eval-flake.sh "$flake"; then
|
||||||
status=1
|
status=1
|
||||||
echo "❌ $flake"
|
echo "❌ $flake"
|
||||||
else
|
else
|
||||||
|
|
Loading…
Reference in a new issue