mirror of
https://github.com/ohmyzsh/ohmyzsh.git
synced 2024-11-25 15:20:08 +00:00
Merge pull request #4729 from sachin21/update_rake_command_in_rails_plugin
Support bundler
This commit is contained in:
commit
9e8f417dab
1 changed files with 2 additions and 0 deletions
|
@ -13,6 +13,8 @@ function _rails_command () {
|
||||||
function _rake_command () {
|
function _rake_command () {
|
||||||
if [ -e "bin/rake" ]; then
|
if [ -e "bin/rake" ]; then
|
||||||
bin/rake $@
|
bin/rake $@
|
||||||
|
elif type bundle &> /dev/null && [ -e "Gemfile" ]; then
|
||||||
|
bundle exec rake $@
|
||||||
else
|
else
|
||||||
command rake $@
|
command rake $@
|
||||||
fi
|
fi
|
||||||
|
|
Loading…
Reference in a new issue