소스 검색

Pass quoted arguments through properly.

Graham Ashton 15 년 전
부모
커밋
50515bed62
1개의 변경된 파일2개의 추가작업 그리고 2개의 파일을 삭제
  1. 2 2
      bundler-exec.sh

+ 2 - 2
bundler-exec.sh

@@ -24,9 +24,9 @@ run-with-bundler()
     local command="$1"
     shift
     if bundler-installed && within-bundled-project; then
-        bundle exec $command $*
+        bundle exec $command "$@"
     else
-        $command $*
+        $command "$@"
     fi
 }