Explorar el Código

Don't alias the bundle command

Matt Campbell hace 13 años
padre
commit
23a99634e3
Se han modificado 1 ficheros con 2 adiciones y 0 borrados
  1. 2 0
      bundler-exec.sh

+ 2 - 0
bundler-exec.sh

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