Fix missing super.

This commit is contained in:
Markus Reiter 2018-07-21 00:06:12 +02:00
parent 7ad999f5f8
commit 17c2e2c00c

View File

@ -199,7 +199,7 @@ class XzUnpackStrategy < UnpackStrategy
private
def extract_to_dir(unpack_dir, basename:)
super
FileUtils.cp path, unpack_dir/basename, preserve: true
safe_system Formula["xz"].opt_bin/"unxz", "-q", "-T0", unpack_dir/basename
extract_nested_tar(unpack_dir)
end