1#!/bin/sh 2# 3# This is used to cleanup the project directories before making a commit or 4# a clean release. This will get rid of auto-generated files in the 5# apps/<name>/project directories. 6# 7for projectPath in `find apps/*/project` ; do 8 rm -rf $projectPath/bin 9 rm -rf $projectPath/gen 10 rm -f $projectPath/build.xml 11 rm -f $projectPath/local.properties 12done 13