Skip to content

Commit

Permalink
Merge pull request ohmyzsh#717 from blueyed/github-plugin-working-hub
Browse files Browse the repository at this point in the history
github plugin: only alias git=hub if `hub --version` works.
  • Loading branch information
robbyrussell committed Jan 22, 2012
2 parents 3891c50 + 2c660c1 commit 80257bd
Showing 1 changed file with 11 additions and 1 deletion.
12 changes: 11 additions & 1 deletion plugins/github/github.plugin.zsh
@@ -1,7 +1,17 @@
# Setup hub function for git, if it is available; http://github.com/defunkt/hub # Setup hub function for git, if it is available; http://github.com/defunkt/hub
if [ "$commands[(I)hub]" ] && [ "$commands[(I)ruby]" ]; then if [ "$commands[(I)hub]" ] && [ "$commands[(I)ruby]" ]; then
# eval `hub alias -s zsh` # eval `hub alias -s zsh`
function git(){hub "$@"} function git(){
if ! (( $+_has_working_hub )); then
hub --version &> /dev/null
_has_working_hub=$(($? == 0))
fi
if (( $_has_working_hub )) ; then
hub "$@"
else
command git "$@"
fi
}
fi fi


# Functions ################################################################# # Functions #################################################################
Expand Down

0 comments on commit 80257bd

Please sign in to comment.