Commit 1b65c55f authored by Robby Russell's avatar Robby Russell
Browse files

Merge pull request #2959 from crkochan/fix_rake_command

Fix for recusion limit hit for _rake_command alias
parents 4eff7926 bf134e9c
...@@ -6,7 +6,7 @@ function _rails_command () { ...@@ -6,7 +6,7 @@ function _rails_command () {
elif [ -e "script/server" ]; then elif [ -e "script/server" ]; then
ruby script/$@ ruby script/$@
else else
rails $@ command rails $@
fi fi
} }
...@@ -14,7 +14,7 @@ function _rake_command () { ...@@ -14,7 +14,7 @@ function _rake_command () {
if [ -e "bin/rake" ]; then if [ -e "bin/rake" ]; then
bin/rake $@ bin/rake $@
else else
rake $@ command rake $@
fi fi
} }
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment