Posts Tagged ant
Remove Mac OS / Unix .DS_Store Files
It seems that Ant won’t delete directories with .DS_Store files and you can’t get rid of them in finder (b/c it’ll just replace them when you remove them), so we needed to leverage a quick command in terminal:
sudo find . -name “.DS_Store” -depth -exec rm {} \;
The aforementioned command will recursively remove all of the .DS_Store files from a given directory; we thought someone else mind find this useful.