Skip to content

Commit

Permalink
Remove .DS_Store files (generated by Mac Finder) from built .xpi
Browse files Browse the repository at this point in the history
  • Loading branch information
1ec5 committed Jun 4, 2008
1 parent 00c7e47 commit 370245d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion build.sh
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 370245d

Please sign in to comment.