- update some installation notes in README - move clean/install into "Scripts" - remove "Test" - move some TODOs into a "TODO.md"
11 lines
410 B
Bash
Executable File
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
|