Explorar el Código

Pass quoted arguments through properly.

Graham Ashton hace 15 años
padre
commit
50515bed62
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. 2 2
      bundler-exec.sh

+ 2 - 2
bundler-exec.sh

@@ -24,9 +24,9 @@ run-with-bundler()
     local command="$1"
     shift
     if bundler-installed && within-bundled-project; then
-        bundle exec $command $*
+        bundle exec $command "$@"
     else
-        $command $*
+        $command "$@"
     fi
 }