We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0101a95 commit 46d8566Copy full SHA for 46d8566
1 file changed
.github/workflows/build-mac.yml
@@ -211,7 +211,12 @@ jobs:
211
APPEX_PATH="./${{matrix.project}}.app/Contents/PlugIns/${{matrix.project}}.appex"
212
if [ -d "$APPEX_PATH" ]; then
213
echo "Found AUv3 appex at $APPEX_PATH"
214
- echo "Registering with pluginkit..."
+
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..."
220
pluginkit -a "$APPEX_PATH"
221
sleep 2
222
pgrep -x AudioComponentRegistrar >/dev/null && killall -9 AudioComponentRegistrar; echo "killed AudioComponentRegistrar" || echo "AudioComponentRegistrar not running"
0 commit comments