From 20eeb5aca03915bc071a9f42b0bb3fc188fc1818 Mon Sep 17 00:00:00 2001 From: Mike McQuaid Date: Wed, 28 Apr 2021 14:23:09 +0100 Subject: [PATCH] dev-cmd/bottle: add missing verbose puts. These were added but didn't actually output anything... --- Library/Homebrew/dev-cmd/bottle.rb | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Library/Homebrew/dev-cmd/bottle.rb b/Library/Homebrew/dev-cmd/bottle.rb index e5e45347ab..a66b79f111 100644 --- a/Library/Homebrew/dev-cmd/bottle.rb +++ b/Library/Homebrew/dev-cmd/bottle.rb @@ -662,7 +662,7 @@ module Homebrew all_bottle_hash = { formula_name => all_bottle_formula_hash } - "Copying #{local_filename} to #{all_local_filename}" if args.verbose? + puts "Copying #{local_filename} to #{all_local_filename}" if args.verbose? FileUtils.cp local_filename, all_local_filename all_local_json_path = Pathname(all_local_json_filename) @@ -670,7 +670,7 @@ module Homebrew all_local_json_path.write(JSON.pretty_generate(all_bottle_hash)) end - "Removing #{local_filename} and #{local_json_filename}" if args.verbose? + puts "Removing #{local_filename} and #{local_json_filename}" if args.verbose? FileUtils.rm_f [local_filename, local_json_filename] end end