You can not select more than 25 topics
			Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
		
		
		
		
		
			
	
	
		
			
				
					
						
						
							|  | #!/bin/bash
set -e
if [ -d bin ]; then
  cd bin
else
  echo "Please run this script from the root folder"
  exit
fi
PWD=`pwd`
rm -rf *.vst/
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
  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
  rm -f $FILE.vst/Contents/Info.plist-e
done
cd ..
 |