Skip to content

Commit 24716da

Browse files
committed
Delete headers from frameworks of the app bundle. Closes realXtend#702.
1 parent b5b504c commit 24716da

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

tools/OSX/CreateBundleApp.bash

+4
Original file line numberDiff line numberDiff line change
@@ -94,3 +94,7 @@ chmod -R u+w $frameworksdir/Cg.framework
9494
echo "Cleaning redundant files from bundle (*_debug*.dylib etc.)"
9595
debugdylibs=`find $bundledir -name "*_debug*.dylib"`
9696
rm $debugdylibs
97+
98+
echo "Cleaning headers from frameworks"
99+
headers=`find $bundledir -name "Headers"`
100+
rm -rf $headers

0 commit comments

Comments
 (0)