Merge pull request #5408 from ashmaroli/bundle2new
Merge pull request 5408
This commit is contained in:
commit
0f70bb1320
|
@ -133,7 +133,11 @@ RUBY
|
|||
Jekyll::External.require_with_graceful_fail "bundler"
|
||||
Jekyll.logger.info "Running bundle install in #{path.cyan}..."
|
||||
Dir.chdir(path) do
|
||||
system("bundle", "install")
|
||||
if ENV["CI"]
|
||||
system("bundle", "install", "--quiet")
|
||||
else
|
||||
system("bundle", "install")
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
||||
|
|
Loading…
Reference in New Issue