Browse Source

Fix osx examples build

pull/116/head
falkTX 7 years ago
parent
commit
f992b82b73
1 changed files with 5 additions and 1 deletions
  1. +5
    -1
      utils/generate-vst-bundles.sh

+ 5
- 1
utils/generate-vst-bundles.sh View File

@@ -17,7 +17,11 @@ PLUGINS=`ls | grep vst.dylib`

for i in $PLUGINS; do
FILE=`echo $i | awk 'sub("-vst.dylib","")'`
cp -r ../dpf/utils/plugin.vst/ $FILE.vst
if [ -e ../dpf ]; then
cp -r ../dpf/utils/plugin.vst/ $FILE.vst
else
cp -r ../utils/plugin.vst/ $FILE.vst
fi
mv $i $FILE.vst/Contents/MacOS/$FILE
rm -f $FILE.vst/Contents/MacOS/deleteme
sed -i -e "s/X-PROJECTNAME-X/$FILE/" $FILE.vst/Contents/Info.plist


Loading…
Cancel
Save