summaryrefslogtreecommitdiff
path: root/plugins/capistrano/capistrano.plugin.zsh
blob: c85eb474ca8a9cd85f8f3cc4446e54ce5a5a0c85 (plain)
1
2
3
4
5
6
7
8
9
10
11
# Added `shipit` because `cap` is a reserved word. `cap` completion doesn't work.
# http://zsh.sourceforge.net/Doc/Release/Zsh-Modules.html#The-zsh_002fcap-Module

func shipit() {
  if [ -f Gemfile ]
  then
    bundle exec cap $*
  else
    cap $*
  fi
}