0
0
Fork 0
mirror of https://github.com/ohmyzsh/ohmyzsh.git synced 2024-09-19 04:01:21 +02:00
ohmyzsh/plugins/capistrano/capistrano.plugin.zsh

12 lines
255 B
Bash
Raw Normal View History

2014-04-05 02:20:01 +02:00
# 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
2014-04-05 02:20:01 +02:00
func shipit() {
if [ -f Gemfile ]
then
bundle exec cap $*
else
cap $*
fi
}