Skip to content

Commit 2f29b68

Browse files
committed
[CI] Silences gem install output
1 parent f3af8a3 commit 2f29b68

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

.ci/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ COPY . .
1212

1313
RUN apt-get update
1414
RUN apt-get install zip
15-
RUN gem update --system
15+
RUN gem update --system --quiet --silent
1616
RUN bundle install --quiet
1717
RUN bundle exec rake bundle:clean
1818
RUN rake bundle:install

Rakefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -106,7 +106,7 @@ namespace :bundle do
106106
task :install do
107107
SUBPROJECTS.each do |project|
108108
puts '-' * 80
109-
sh "cd #{CURRENT_PATH.join(project)} && unset BUNDLE_GEMFILE && bundle install"
109+
sh "cd #{CURRENT_PATH.join(project)} && unset BUNDLE_GEMFILE && bundle install --quiet"
110110
puts
111111
end
112112
end

0 commit comments

Comments
 (0)