summaryrefslogtreecommitdiff
path: root/tasks/rspec.rb
diff options
context:
space:
mode:
Diffstat (limited to 'tasks/rspec.rb')
-rw-r--r--tasks/rspec.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/tasks/rspec.rb b/tasks/rspec.rb
index 58dab33a0c..18f3318e55 100644
--- a/tasks/rspec.rb
+++ b/tasks/rspec.rb
@@ -30,7 +30,8 @@ begin
puts "--- Running #{gem} specs"
Bundler.with_unbundled_env do
puts "Executing tests in #{Dir.pwd}:"
- sh("bundle install --jobs=3 --retry=3 --path=../vendor/bundle")
+ sh("bundle config set --local path 'vendor/bundle'")
+ sh("bundle install --jobs=3 --retry=3")
sh("bundle exec rake spec")
end
end