diff options
author | Emil Marashliev <Emil.Marashliev@paddypower.com> | 2014-12-01 13:34:18 +0200 |
---|---|---|
committer | Emil Marashliev <Emil.Marashliev@paddypower.com> | 2014-12-01 13:34:18 +0200 |
commit | 575bb91b5f2e1220e566385e2982ca4f72521819 (patch) | |
tree | 90a109c813c44d5dac53b48c1ded89dce748538a | |
parent | 43aa3783f8a5606e0f884a43d51daf36553af1e4 (diff) | |
download | zsh-575bb91b5f2e1220e566385e2982ca4f72521819.tar.gz zsh-575bb91b5f2e1220e566385e2982ca4f72521819.tar.bz2 zsh-575bb91b5f2e1220e566385e2982ca4f72521819.zip |
Added Xcode alias for deleting Derived Data.
-rw-r--r-- | plugins/xcode/xcode.plugin.zsh | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/plugins/xcode/xcode.plugin.zsh b/plugins/xcode/xcode.plugin.zsh index b7b75cf93..1d1205b80 100644 --- a/plugins/xcode/xcode.plugin.zsh +++ b/plugins/xcode/xcode.plugin.zsh @@ -16,6 +16,7 @@ function xcsel { alias xcb='xcodebuild' alias xcp='xcode-select --print-path' +alias xcdd='rm -rf ~/Library/Developer/Xcode/DerivedData/*' if [[ -d $(xcode-select -p)/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app ]]; then alias simulator='open $(xcode-select -p)/Platforms/iPhoneSimulator.platform/Developer/Applications/iPhone\ Simulator.app' |