Commit bfe6c82f43c69d9f9a383c9633fac1c6c9a1d75b

Authored by Andre Arko
1 parent 3a6e8ee440

speed up all invocations of boxen

when running Bundler, it just so happens that --local should (but does not)
skip updating the gems in vendor/cache. explicitly skipping that update drops
most of a second off of every run of boxen.

Showing 1 changed file with 1 additions and 1 deletions Side-by-side Diff

... ... @@ -64,7 +64,7 @@
64 64  
65 65 # Make sure our local dependencies are up to date.
66 66  
67   -strap = %w(script/bootstrap --deployment --local --without development:test)
  67 +strap = %w(script/bootstrap --deployment --local --without development:test --no-cache)
68 68 abort "Can't bootstrap, dependencies are outdated." unless system *strap
69 69  
70 70 # Set up our local configuration, deps, and load path.