Skip to content

Commit 85b7e0e

Browse files
committed
copy the full .vst3 folder to Plugins/ after build, not just .so
required by Bitwig because it won't detect the library only
1 parent b2f77af commit 85b7e0e

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

build_plugins.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -77,13 +77,13 @@ fi
7777

7878
echo -n "copying VST3 plugins into 'Plugins' directory... "
7979
mkdir -p ../Plugins
80-
if [[ "$OSTYPE" == "linux-gnu"* ]]; then
80+
# if [[ "$OSTYPE" == "linux-gnu"* ]]; then
8181
for preset in "$@"
8282
do
83-
find ./osc-${preset}_artefacts/VST3/osc-${preset}.vst3 -type f -name '*.so' -exec cp {} ../Plugins \;
83+
cp -r ./osc-${preset}_artefacts/VST3/osc-${preset}.vst3 ../Plugins
8484
done
85-
fi
86-
cp ./osccontrol-light_artefacts/VST3/osccontrol-light.vst3/Contents/*/osccontrol-light.so ../Plugins
85+
# fi
86+
cp -r ./osccontrol-light_artefacts/VST3/osccontrol-light.vst3 ../Plugins
8787
echo "done!"
8888

8989
echo -n "copying GUI application into top-level source directory... "

0 commit comments

Comments
 (0)