Skip to content

Commit

Permalink
Add create_bundle script
Browse files Browse the repository at this point in the history
  • Loading branch information
1and2papa committed Jul 7, 2015
1 parent 1dfa8be commit edec34d
Showing 1 changed file with 10 additions and 0 deletions.
10 changes: 10 additions & 0 deletions create_bundle.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
#!/bin/sh

BUNDLE="CTAssetsPickerController/CTAssetsPickerController.bundle"

rm -rf $BUNDLE
mkdir $BUNDLE

find "CTAssetsPickerController/Resources" -name "*.png" | xargs -I {} cp {} "$BUNDLE/"
find "CTAssetsPickerController/Resources" -name "*.lproj" | xargs -I {} cp -R {} "$BUNDLE/"
echo "Created $BUNDLE"

0 comments on commit edec34d

Please sign in to comment.