scatterd-dotfiles/zsh/functions/rake
Dan Croak 64e3c09e51 Pass arguments from rake shell function when not using zeus
Non-zeus path didn't pass arguments, so it just ran `rake`.
2013-02-12 10:10:04 -08:00

7 lines
93 B
Text

rake() {
if [ -S .zeus.sock ]; then
zeus rake "$@"
else
command rake "$@"
fi
}