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.
This commit is contained in:
parent
3a6e8ee440
commit
bfe6c82f43
1 changed files with 1 additions and 1 deletions
|
@ -64,7 +64,7 @@ end
|
||||||
|
|
||||||
# Make sure our local dependencies are up to date.
|
# Make sure our local dependencies are up to date.
|
||||||
|
|
||||||
strap = %w(script/bootstrap --deployment --local --without development:test)
|
strap = %w(script/bootstrap --deployment --local --without development:test --no-cache)
|
||||||
abort "Can't bootstrap, dependencies are outdated." unless system *strap
|
abort "Can't bootstrap, dependencies are outdated." unless system *strap
|
||||||
|
|
||||||
# Set up our local configuration, deps, and load path.
|
# Set up our local configuration, deps, and load path.
|
||||||
|
|
Loading…
Reference in a new issue