#!/usr/bin/env zsh
################################################################################
#
# This file is autoloaded by .zshrc, and actually loaded when executed
#
################################################################################


if [[ $1 == "show" ]] || [[ $1 == "view" ]]; then
  shift
  set -- info "$@"

elif [[ $1 == "clean" ]]; then
  shift
  set -- cleanup "$@"

fi

command brew "$@"


# END OF FILE #################################################################