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 private
def extract_to_dir(unpack_dir, basename:) 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 safe_system Formula["xz"].opt_bin/"unxz", "-q", "-T0", unpack_dir/basename
extract_nested_tar(unpack_dir) extract_nested_tar(unpack_dir)
end end