Commit 90fe69a2 authored by Eloy Durán's avatar Eloy Durán

[bundle] Re-instate usage of bundle dir.

parent c069af32
......@@ -365,8 +365,11 @@ task :bootstrap, :use_bundle_dir? do |t, args|
execute_command "git submodule update --init --recursive"
puts "Installing gems"
sh "ruby --version"
sh "env XCODEPROJ_BUILD=1 bundle install --path ./travis_bundle_dir --verbose"
if args[:use_bundle_dir?]
execute_command "env XCODEPROJ_BUILD=1 bundle install --path ./travis_bundle_dir"
else
execute_command "env XCODEPROJ_BUILD=1 bundle install"
end
end
#-----------------------------------------------------------------------------#
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment