diff options
author | Thomas Kriechbaumer <kriechbaumer@gmail.com> | 2014-07-04 14:56:44 +0200 |
---|---|---|
committer | Thomas Kriechbaumer <kriechbaumer@gmail.com> | 2014-07-15 16:42:23 +0200 |
commit | cfc98d3f8c234b48d34961ce18274ad365ebb97b (patch) | |
tree | ce59db5f55496812b6688d80fdca51f512afa381 /plugins | |
parent | 20c84eaafc0bddc8584902898c245dbe1a7b0f8f (diff) | |
download | zsh-cfc98d3f8c234b48d34961ce18274ad365ebb97b.tar.gz zsh-cfc98d3f8c234b48d34961ce18274ad365ebb97b.tar.bz2 zsh-cfc98d3f8c234b48d34961ce18274ad365ebb97b.zip |
remove double bundle exec
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/bundler/bundler.plugin.zsh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/bundler/bundler.plugin.zsh b/plugins/bundler/bundler.plugin.zsh index fd65ad568..254e0a364 100644 --- a/plugins/bundler/bundler.plugin.zsh +++ b/plugins/bundler/bundler.plugin.zsh @@ -82,7 +82,7 @@ _binstubbed() { _run-with-bundler() { if _bundler-installed && _within-bundled-project; then if _binstubbed $1; then - bundle exec "./bin/$@" + ./bin/$@ else bundle exec $@ fi |