浏览代码

remove double bundle exec

Thomas Kriechbaumer 10 年之前
父节点
当前提交
cfc98d3f8c
共有 1 个文件被更改,包括 1 次插入1 次删除
  1. 1 1
      plugins/bundler/bundler.plugin.zsh

+ 1 - 1
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