Mercurial > hg > tony
changeset 624:bd18e52aa382
Use un-prefixed plugin names now
author | Chris Cannam |
---|---|
date | Thu, 10 Oct 2019 13:38:59 +0100 |
parents | e06cbdc7301c |
children | 72f85d34a922 |
files | deploy/osx/deploy.sh |
diffstat | 1 files changed, 4 insertions(+), 3 deletions(-) [+] |
line wrap: on
line diff
--- a/deploy/osx/deploy.sh Thu Oct 10 13:28:12 2019 +0100 +++ b/deploy/osx/deploy.sh Thu Oct 10 13:38:59 2019 +0100 @@ -32,10 +32,11 @@ esac echo -echo "Copying in plugins from libpyin.dylib and libchp.dylib." +echo "Copying in Vamp plugins." -cp libpyin.dylib "$source/Contents/Resources/pyin.dylib" -cp libchp.dylib "$source/Contents/Resources/chp.dylib" +for plugin in chp pyin ; do + cp "$plugin.dylib" "$source/Contents/Resources/" +done echo echo "Copying in frameworks and plugins from Qt installation directory."