summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordanielsdeleo <dan@getchef.com>2015-05-19 18:39:18 -0700
committerdanielsdeleo <dan@getchef.com>2015-05-20 11:41:52 -0700
commitff5ed9ab95a92b378d3f48be23176f953b093747 (patch)
tree15ebcbadf3312ca22e09fc73ad47ab91d480aa52
parenta5b368cb058903ad5f2a7a41c35de491f733afc8 (diff)
downloadchef-config-gem.tar.gz
Use --local install for component testsconfig-gem
Since we just bundle installed the parent, we should have all the gems the subproject needs
-rw-r--r--tasks/rspec.rb2
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