From 98a6399e46c888076167125739a361ea1cc46893 Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Tue, 2 Oct 2018 13:33:00 +0200 Subject: [PATCH] Force `chmod_R` after extracting. --- Library/Homebrew/unpack_strategy.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Library/Homebrew/unpack_strategy.rb b/Library/Homebrew/unpack_strategy.rb index 2f578b3514..07390f9329 100644 --- a/Library/Homebrew/unpack_strategy.rb +++ b/Library/Homebrew/unpack_strategy.rb @@ -137,7 +137,7 @@ module UnpackStrategy Directory.new(tmp_unpack_dir).extract(to: to, verbose: verbose) - FileUtils.chmod_R "+w", tmp_unpack_dir + FileUtils.chmod_R "+w", tmp_unpack_dir, force: true, verbose: verbose end end