Преглед изворни кода

Pass quoted arguments through properly.

Graham Ashton пре 15 година
родитељ
комит
50515bed62
1 измењених фајлова са 2 додато и 2 уклоњено
  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
 }