diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f42466e1..d432d028 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,7 +24,7 @@ jobs: run: | misplaced_patches=($(find -name "*.patch.toml" -not -path "./patches/*")) if [ -n "$misplaced_patches" ]; then - for $misplaced_patch in ${misplaced_patches[@]}; do + for misplaced_patch in ${misplaced_patches[@]}; do echo "::error Patch should be in /patches. file=$misplaced_patch" done patch_errored_fatal=1