Commit bde374a3 authored by Eloy Duran's avatar Eloy Duran

Fix failure on Travis because of telling tar to extract a gzip archive while it's already unpacked.

Apperantly OS X's BSD tar accepts the x option even if the archive is not a gzip archive.
parent 8a314713
...@@ -82,7 +82,7 @@ module Pod ...@@ -82,7 +82,7 @@ module Pod
tmpfile.write Zlib::GzipReader.new(archive).read tmpfile.write Zlib::GzipReader.new(archive).read
end end
system "tar zxf #{tmpfile.path} -C #{target_path} --strip-components 1" system "tar xf #{tmpfile.path} -C #{target_path} --strip-components 1"
end end
FileUtils.rm_f(tmp_path) FileUtils.rm_f(tmp_path)
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment