diff options
author | Stuart Preston <stuart@chef.io> | 2018-07-04 03:58:38 +0100 |
---|---|---|
committer | Stuart Preston <stuart@chef.io> | 2018-07-04 03:58:38 +0100 |
commit | 0e4cfc3a8dc0e6b5b21d6b2954ff4296101d2c72 (patch) | |
tree | 3710911c5289b6f23e5d927edc70e67a37b79aee /Gemfile | |
parent | 37517d1c380d9d4cbc9d8bd2803da521be89184e (diff) | |
download | chef-0e4cfc3a8dc0e6b5b21d6b2954ff4296101d2c72.tar.gz |
Quiet down bundle install/bundle exec messages on Windows [skip ci]
Signed-off-by: Stuart Preston <stuart@chef.io>
Diffstat (limited to 'Gemfile')
-rw-r--r-- | Gemfile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |