summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorStuart Preston <stuart@chef.io>2018-07-04 03:58:38 +0100
committerStuart Preston <stuart@chef.io>2018-07-04 03:58:38 +0100
commit0e4cfc3a8dc0e6b5b21d6b2954ff4296101d2c72 (patch)
tree3710911c5289b6f23e5d927edc70e67a37b79aee
parent37517d1c380d9d4cbc9d8bd2803da521be89184e (diff)
downloadchef-0e4cfc3a8dc0e6b5b21d6b2954ff4296101d2c72.tar.gz
Quiet down bundle install/bundle exec messages on Windows [skip ci]
Signed-off-by: Stuart Preston <stuart@chef.io>
-rw-r--r--Gemfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Gemfile b/Gemfile
index 86cddf1bd0..f04116d177 100644
--- a/Gemfile
+++ b/Gemfile
@@ -76,7 +76,7 @@ if RUBY_PLATFORM =~ /mswin|mingw|windows/
instance_eval do
ruby_exe_dir = RbConfig::CONFIG["bindir"]
assemblies = Dir.glob(File.expand_path("distro/ruby_bin_folder", Dir.pwd) + "/*.dll")
- FileUtils.cp_r assemblies, ruby_exe_dir, verbose: true unless ENV["_BUNDLER_WINDOWS_DLLS_COPIED"]
+ FileUtils.cp_r assemblies, ruby_exe_dir, verbose: false unless ENV["_BUNDLER_WINDOWS_DLLS_COPIED"]
ENV["_BUNDLER_WINDOWS_DLLS_COPIED"] = "1"
end
end