diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml
index 2bb4af7..2d38724 100644
--- a/.github/workflows/build.yml
+++ b/.github/workflows/build.yml
@@ -519,12 +519,12 @@ jobs:
done
- name: Test CLAP plugins
run: |
- for p in $(ls bin/ | grep clap); do \
+ for p in $(find bin/ -type f | grep '.*\.clap$'); do \
env CARLA_BRIDGE_DUMMY=1 CARLA_BRIDGE_TESTING=native \
valgrind \
--error-exitcode=255 \
--leak-check=full \
--track-origins=yes \
--suppressions=./dpf/utils/valgrind-dpf.supp \
- /usr/lib/carla/carla-bridge-native clap ./bin/${p} "" 1>/dev/null; \
+ /usr/lib/carla/carla-bridge-native clap ./${p} "" 1>/dev/null; \
done
diff --git a/README.md b/README.md
index c024c79..3622749 100644
--- a/README.md
+++ b/README.md
@@ -2,7 +2,7 @@ DPF-Plugins
===========
Collection of DPF-based plugins ready for packaging.
-They come in LADSPA, DSSI, LV2, VST2 and VST3 formats.
+They come in LADSPA, DSSI, LV2, VST2, VST3 and CLAP formats.
This repository does not use submodules,
everything you need to build is included in a simple clone.