@@ -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
}