File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed
Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -211,7 +211,12 @@ jobs:
211211 APPEX_PATH="./${{matrix.project}}.app/Contents/PlugIns/${{matrix.project}}.appex"
212212 if [ -d "$APPEX_PATH" ]; then
213213 echo "Found AUv3 appex at $APPEX_PATH"
214- echo "Registering with pluginkit..."
214+
215+ # Remove AUv2 component so auval finds the AUv3 (they share the same IDs)
216+ echo "Removing AUv2 component to avoid ID conflict..."
217+ rm -rf ~/Library/Audio/Plug-Ins/Components/${{matrix.project}}.component
218+
219+ echo "Registering AUv3 with pluginkit..."
215220 pluginkit -a "$APPEX_PATH"
216221 sleep 2
217222 pgrep -x AudioComponentRegistrar >/dev/null && killall -9 AudioComponentRegistrar; echo "killed AudioComponentRegistrar" || echo "AudioComponentRegistrar not running"
You can’t perform that action at this time.
0 commit comments