Explorar o código

Pass quoted arguments through properly.

Graham Ashton %!s(int64=15) %!d(string=hai) anos
pai
achega
50515bed62
Modificáronse 1 ficheiros con 2 adicións e 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
 }