blob: 21a0df013d07ba59e0d695cf0e96f8dab765f109 [file] [log] [blame]
#!/bin/sh
#
# This is used to cleanup the project directories before making a commit or
# a clean release. This will get rid of auto-generated files in the
# apps/<name>/project directories.
#
for projectPath in `find apps/*/project` ; do
rm -rf $projectPath/bin
rm -rf $projectPath/gen
rm -f $projectPath/build.xml
rm -f $projectPath/local.properties
done