summaryrefslogtreecommitdiff
path: root/plugins
diff options
context:
space:
mode:
authorThomas Kriechbaumer <kriechbaumer@gmail.com>2014-07-04 14:56:44 +0200
committerThomas Kriechbaumer <kriechbaumer@gmail.com>2014-07-15 16:42:23 +0200
commitcfc98d3f8c234b48d34961ce18274ad365ebb97b (patch)
treece59db5f55496812b6688d80fdca51f512afa381 /plugins
parent20c84eaafc0bddc8584902898c245dbe1a7b0f8f (diff)
downloadzsh-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.zsh2
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