Skip to content

Commit

Permalink
Remove user-specific files, rename output folders to the proper names.
Browse files Browse the repository at this point in the history
  • Loading branch information
jtowle committed Jun 18, 2012
1 parent 145d792 commit 1a806f8
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions package_samples.sh
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ rm -rf `find . -name "*Test*.plist"`
rm -rf `find . -name "*Test*.pch"`
rm -rf `find . -name "*.orig" `

#delete user-specific xcode files
rm -rf `find . -name "*.mode1v3" `
rm -rf `find . -name "*.pbxuser" `
rm -rf `find . -name "*.perspective*" `
rm -rf `find . -name "xcuserdata" `

#delete the testing config plist
rm -rf `find . -name "AirshipDevelopment.plist" `

# copy the sample plist into place
Expand All @@ -51,3 +58,7 @@ for sample in InboxSample PushSample StoreFrontSample SubscriptionSample; do
cp ../README.rst $sample
mv -f $sample/AirshipConfig.plist.sample $sample/AirshipConfig.plist
done

#rename packages for distribution
mv StoreFrontSample IAPSample
mv InboxSample RichPushSample

0 comments on commit 1a806f8

Please sign in to comment.