Merge pull request #5408 from ashmaroli/bundle2new

Merge pull request 5408
This commit is contained in:
jekyllbot 2016-09-28 16:31:08 -07:00 committed by GitHub
commit 0f70bb1320
1 changed files with 5 additions and 1 deletions

View File

@ -133,10 +133,14 @@ RUBY
Jekyll::External.require_with_graceful_fail "bundler" Jekyll::External.require_with_graceful_fail "bundler"
Jekyll.logger.info "Running bundle install in #{path.cyan}..." Jekyll.logger.info "Running bundle install in #{path.cyan}..."
Dir.chdir(path) do Dir.chdir(path) do
if ENV["CI"]
system("bundle", "install", "--quiet")
else
system("bundle", "install") system("bundle", "install")
end end
end end
end end
end end
end end
end
end end