Created
March 11, 2013 19:31
-
-
Save mbauhardt/5136962 to your computer and use it in GitHub Desktop.
ohmyzsh plugin for antw. See http://antw.cc
This file contains hidden or 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
| function antw { | |
| if [[ -z $ANTW_HOME ]]; then | |
| ANTW_HOME=$HOME/.antw/install | |
| fi | |
| $ANTW_HOME/bin/antw $@ | |
| } | |
| compdef _ant antw | |
| function antw-update { | |
| if [[ -z $ANTW_HOME ]]; then | |
| ANTW_HOME=$HOME/.antw/install | |
| fi | |
| $ANTW_HOME/bin/antw-update | |
| } | |
| function antw-uninstall { | |
| if [[ -z $ANTW_HOME ]]; then | |
| ANTW_HOME=$HOME/.antw/install | |
| fi | |
| $ANTW_HOME/bin/antw-uninstall | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment