Browse Source

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
Marc Cornellà 6 years ago
parent
commit
2991f237ae
1 changed files with 1 additions and 1 deletions
  1. 1 1
      plugins/bundler/bundler.plugin.zsh

+ 1 - 1
plugins/bundler/bundler.plugin.zsh

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