summaryrefslogtreecommitdiffstats
path: root/contrib/local/remove-dsstore-files.sh
blob: 50cbb3a20d32a4d06ec6865ce54c6236504796fc (plain)
1
2
3
4
5
6
7
8
9
#!/bin/bash

set -e

ME=`basename $0`
DIR="$( cd "$( dirname "$0" )" && pwd )"
CWD=`pwd`

find ${DIR}/../.. -name '.DS_Store' -exec rm {} \;