Ver Fonte

Don't alias gem either

Matt Campbell há 13 anos atrás
pai
commit
34aa33bd03
1 ficheiros alterados com 1 adições e 1 exclusões
  1. 1 1
      bundler-exec.sh

+ 1 - 1
bundler-exec.sh

@@ -75,7 +75,7 @@ run-with-bundler()
 ## Main program
 
 for CMD in $BUNDLED_COMMANDS; do
-  if [[ $CMD != 'bundle' ]]; then
+  if [[ $CMD != 'bundle' && $CMD != 'gem' ]]; then
     alias $CMD="run-with-bundler $CMD"
   fi
 done