We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f3af8a3 commit 2f29b68Copy full SHA for 2f29b68
.ci/Dockerfile
@@ -12,7 +12,7 @@ COPY . .
12
13
RUN apt-get update
14
RUN apt-get install zip
15
-RUN gem update --system
+RUN gem update --system --quiet --silent
16
RUN bundle install --quiet
17
RUN bundle exec rake bundle:clean
18
RUN rake bundle:install
Rakefile
@@ -106,7 +106,7 @@ namespace :bundle do
106
task :install do
107
SUBPROJECTS.each do |project|
108
puts '-' * 80
109
- sh "cd #{CURRENT_PATH.join(project)} && unset BUNDLE_GEMFILE && bundle install"
+ sh "cd #{CURRENT_PATH.join(project)} && unset BUNDLE_GEMFILE && bundle install --quiet"
110
puts
111
end
112
0 commit comments