浏览代码

Merge pull request #17 from MikeSchroll/master

Fix for bundler commands that contain spaces
Graham Ashton 13 年之前
父节点
当前提交
aaa272e659
共有 1 个文件被更改,包括 2 次插入2 次删除
  1. 2 2
      bundler-exec.sh

+ 2 - 2
bundler-exec.sh

@@ -29,9 +29,9 @@ within-bundled-project()
 run-with-bundler()
 run-with-bundler()
 {
 {
     if bundler-installed && within-bundled-project; then
     if bundler-installed && within-bundled-project; then
-        bundle exec $@
+        bundle exec "$@"
     else
     else
-        $@
+        "$@"
     fi
     fi
 }
 }