summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Zammit <damien@zamaudio.com>2018-02-25 12:15:47 +1100
committerDamien Zammit <damien@zamaudio.com>2018-02-25 12:15:47 +1100
commit87c3ac8576fc43a767ce10f5b640ee84b6233ab0 (patch)
tree8cb87ccedb385a78b720c61b3df964e640557747
parent279c265361a9da5a1491107585c75284e0dc0e18 (diff)
Remove SetFile call and dependence on real OSX system to buildremove-setfile
-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 ..