Explorar o código

Merge pull request #17 from MikeSchroll/master

Fix for bundler commands that contain spaces
Graham Ashton %!s(int64=13) %!d(string=hai) anos
pai
achega
aaa272e659
Modificáronse 1 ficheiros con 2 adicións e 2 borrados
  1. 2 2
      bundler-exec.sh

+ 2 - 2
bundler-exec.sh

@@ -29,9 +29,9 @@ within-bundled-project()
 run-with-bundler()
 {
     if bundler-installed && within-bundled-project; then
-        bundle exec $@
+        bundle exec "$@"
     else
-        $@
+        "$@"
     fi
 }