From 7a624576178ed4588cb9f4a5f9b4a36f12bcd82c Mon Sep 17 00:00:00 2001 From: Roland Rabien Date: Tue, 20 Jan 2026 09:17:17 -0800 Subject: [PATCH] Fix Linux CLAP strip command The CLAP plugin on Linux is a flat .so file, not a bundle directory. --- ci/build.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ci/build.sh b/ci/build.sh index 9494a77..0d560c0 100755 --- a/ci/build.sh +++ b/ci/build.sh @@ -115,7 +115,7 @@ elif [ "$(expr substr $(uname -s) 1 5)" == "Linux" ]; then strip vst/$PLUGIN.so strip vst3/$PLUGIN.vst3/Contents/x86_64-linux/$PLUGIN.so strip lv2/$PLUGIN.lv2/lib$PLUGIN.so - strip clap/$PLUGIN.clap/$PLUGIN.so + strip clap/$PLUGIN.clap # Upload cd "$ROOT/ci/bin"