Merge pull request #3230 from jamielinux/gzip-k

Avoid gzip "-k" option for wider OS compatibility
This commit is contained in:
Robin Ward 2015-02-24 14:42:07 -05:00
commit ff842758e1
1 changed files with 1 additions and 1 deletions

View File

@ -118,7 +118,7 @@ end
def gzip(path) def gzip(path)
STDERR.puts "gzip #{path}" STDERR.puts "gzip #{path}"
STDERR.puts `gzip -f -k -9 #{path}` STDERR.puts `gzip -f -c -9 #{path} > #{path}.gz`
end end
def compress(from,to) def compress(from,to)