summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Smith <tsmith@chef.io>2018-07-03 22:01:09 -0700
committerGitHub <noreply@github.com>2018-07-03 22:01:09 -0700
commitd3d4198c971830715bbf4f5feee7e9f61503f9df (patch)
tree3710911c5289b6f23e5d927edc70e67a37b79aee
parent37517d1c380d9d4cbc9d8bd2803da521be89184e (diff)
parent0e4cfc3a8dc0e6b5b21d6b2954ff4296101d2c72 (diff)
downloadchef-d3d4198c971830715bbf4f5feee7e9f61503f9df.tar.gz
Merge pull request #7420 from chef/sp/quiet-bundler-win-messages
Quiet down bundle install/bundle exec messages on Windows [skip ci]
-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