From e0ef1eeb01a180368cc584af3216a9cb71ecdbb8 Mon Sep 17 00:00:00 2001 From: Ivan Petkov Date: Wed, 18 Oct 2023 17:15:03 -0700 Subject: [PATCH] typo --- .github/workflows/test.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 307ba554..afc4fb6e 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -85,7 +85,7 @@ jobs: run: | rm ./examples/.gitignore nix develop .# --accept-flake-config --command bash -c ' - for f in (find ./examples -maxdepth 1 -mindepth 1 -type d ${{ matrix.filter }} | sort -u); do + for f in $(find ./examples -maxdepth 1 -mindepth 1 -type d ${{ matrix.filter }} | sort -u); do ./ci/check-example.sh "${f}" ${{ matrix.nixpkgs }} done '