소스 검색

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()
 {
     if bundler-installed && within-bundled-project; then
-        bundle exec $@
+        bundle exec "$@"
     else
-        $@
+        "$@"
     fi
 }