Sfoglia il codice sorgente

Don't alias the bundle command

Matt Campbell 13 anni fa
parent
commit
23a99634e3
1 ha cambiato i file con 2 aggiunte e 0 eliminazioni
  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