summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2018-04-12 08:29:29 +1000
committerFilipe Coelho <falktx@falktx.com>2018-04-12 00:29:29 +0200
commit495cb5fda1b051c2ccd4e8959d6ba056aaeffc26 (patch)
tree3d8a52def6fa0e0569531cd649023fd9d244dd67
parent70cec6a9d0222b32abdcaec02cd7b01378c4d78b (diff)
Remove SetFile call and dependence on real OSX system to build (#38)
-rwxr-xr-xutils/generate-vst-bundles.sh6
1 files changed, 0 insertions, 6 deletions
diff --git a/utils/generate-vst-bundles.sh b/utils/generate-vst-bundles.sh
index 4ff14b66..b4afdb83 100755
--- a/utils/generate-vst-bundles.sh
+++ b/utils/generate-vst-bundles.sh
@@ -11,11 +11,6 @@ fi
PWD=`pwd`
-if [ ! -d /System/Library ]; then
- echo "This doesn't seem to be OSX, please stop!"
- exit 0
-fi
-
rm -rf *.vst/
PLUGINS=`ls | grep vst.dylib`
@@ -27,7 +22,6 @@ for i in $PLUGINS; do
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
- SetFile -a B $FILE.vst
done
cd ..