Files
Timothy Sutton 2d4f00724d Housekeeping
- update some installation notes in README
- move clean/install into "Scripts"
- remove "Test"
- move some TODOs into a "TODO.md"
2013-08-10 21:06:29 -04:00

11 lines
410 B
Bash
Executable File

#!/bin/bash
find . -name '.DS_Store' -print0 | xargs -0 rm -f
find Code -name '*.pyc' -print0 | xargs -0 rm -rf
find Recipes -name '*-receipt-*.plist' -print0 | xargs -0 rm -f
find Recipes -name '*.dmg' -print0 | xargs -0 rm -f
find Recipes -name '*.pkg' -print0 | xargs -0 rm -rf
find Recipes -name 'PackageInfo' -print0 | xargs -0 rm -rf
find Recipes/Munki/TextMate -name '*.zip' -print0 | xargs -0 rm -rf