From 67c30b8372541131d3d78f385e68ac79f4dddf49 Mon Sep 17 00:00:00 2001 From: Markus Reiter Date: Wed, 18 Jul 2018 13:03:29 +0200 Subject: [PATCH] Fix `DirectoryUnpackStrategy` following symlinks. --- 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 84def55eb9..5062deb5f7 100644 --- a/Library/Homebrew/unpack_strategy.rb +++ b/Library/Homebrew/unpack_strategy.rb @@ -96,7 +96,7 @@ class DirectoryUnpackStrategy < UnpackStrategy private def extract_to_dir(unpack_dir, basename:) - FileUtils.cp_r path.children, unpack_dir, preserve: true + FileUtils.cp_r File.join(path, "."), unpack_dir, preserve: true end end