1
0
mirror of https://github.com/robbyrussell/oh-my-zsh.git synced 2025-12-06 15:30:40 +01:00

bundler: allow aliases in bundle exec

This means that if you have, for example, `alias rs='rails server'`, you can
run `be rs` and have it expanded to `bundle exec rails server`.

Fixes #5818
This commit is contained in:
Marc Cornellà
2018-08-07 21:04:09 +02:00
committed by GitHub
parent 19b925e741
commit 2991f237ae

View File

@@ -1,4 +1,4 @@
alias be="bundle exec"
alias be="bundle exec "
alias bl="bundle list"
alias bp="bundle package"
alias bo="bundle open"