소스 검색

Reverted -rbundler/setup patch (broken).

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

+ 1 - 5
bundler-exec.sh

@@ -24,11 +24,7 @@ within-bundled-project()
 run-with-bundler()
 {
     if bundler-installed && within-bundled-project; then
-        if [ $command == "ruby" ]; then
-            ruby -rbundler/setup "$@"
-        else
-            bundle exec $command "$@"
-        fi
+        bundle exec "$@"
     else
         "$@"
     fi