diff options
author | danielsdeleo <dan@getchef.com> | 2015-05-19 18:39:18 -0700 |
---|---|---|
committer | danielsdeleo <dan@getchef.com> | 2015-05-20 15:13:57 -0700 |
commit | 9984b0cd6b1a88aec19cd5242d1082fe7f9c45a5 (patch) | |
tree | a8c7656b83afc30fddadb187592764d0d4373971 /tasks | |
parent | c3eb30d12d8afa60e8b720825bc6ce8708b5b05a (diff) | |
download | chef-9984b0cd6b1a88aec19cd5242d1082fe7f9c45a5.tar.gz |
Use --local install for component tests
Since we just bundle installed the parent, we should have all the gems
the subproject needs
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/rspec.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tasks/rspec.rb b/tasks/rspec.rb index 4d74fa0951..6e802d3df8 100644 --- a/tasks/rspec.rb +++ b/tasks/rspec.rb @@ -30,7 +30,7 @@ begin task :component_specs do Dir.chdir("chef-config") do Bundler.with_clean_env do - sh("bundle install") + sh("bundle install --local") sh("bundle exec rake spec") end end |