Parcourir la source

Don't alias the bundle command

Matt Campbell il y a 13 ans
Parent
commit
23a99634e3
1 fichiers modifiés avec 2 ajouts et 0 suppressions
  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