Created
December 8, 2013 21:25
-
-
Save chutaicho/7863970 to your computer and use it in GitHub Desktop.
A quick shell-script for removing all Build and DerivedData. Put this into your projects' root or wherever you like, then execute with Terminal.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/sh | |
find . -name "build" -print -exec rm -rf {} ";" | |
find . -name "DerivedData" -print -exec rm -rf {} ";" |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment