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

Merge pull request #2959 from crkochan/fix_rake_command

Fix for recusion limit hit for _rake_command alias
This commit is contained in:
Robby Russell 2014-11-06 09:19:49 -08:00
commit 1b65c55fcf

View file

@ -6,7 +6,7 @@ function _rails_command () {
elif [ -e "script/server" ]; then
ruby script/$@
else
rails $@
command rails $@
fi
}
@ -14,7 +14,7 @@ function _rake_command () {
if [ -e "bin/rake" ]; then
bin/rake $@
else
rake $@
command rake $@
fi
}