فهرست منبع

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