diff --git a/build.sh b/build.sh index 6a39d7c..8526f58 100755 --- a/build.sh +++ b/build.sh @@ -84,7 +84,7 @@ done echo "Copying various files to $TMP_DIR folder..." for DIR in $ROOT_DIRS; do cp -rpv $DIR $TMP_DIR/$DIR - rm -rf `find $TMP_DIR/$DIR -name ".svn" -type d` + rm -rf `find $TMP_DIR/$DIR \( -name ".svn" -type d \) -o \( -name ".DS_Store" -type f \)` # mkdir $TMP_DIR/$DIR # FILES="`find $DIR -path '*CVS*' -prune -o -type f -print | grep -v \~`" # echo $FILES >> files